aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorkzc <zaxxon2011@gmail.com>2016-10-02 10:46:09 -0400
committerRichard van Velzen <rvanvelzen@experty.com>2016-10-06 13:50:11 +0200
commitfc9804b90955d3b38ac6e6c903a8c0e3f7945913 (patch)
treed9863712ef4643b9796baabb25cd4fcf4aaf40bb /test
parent4761d07e0bc3d4c53e0c9c72fc9c322c95cb090e (diff)
downloadtracifyjs-fc9804b90955d3b38ac6e6c903a8c0e3f7945913.tar.gz
tracifyjs-fc9804b90955d3b38ac6e6c903a8c0e3f7945913.zip
Fix (typeof side_effect()) in boolean context
Fixes #1289 with suggestion by @rvanvelzen
Diffstat (limited to 'test')
-rw-r--r--test/compress/typeof.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/compress/typeof.js b/test/compress/typeof.js
index cefdd43c..fb391573 100644
--- a/test/compress/typeof.js
+++ b/test/compress/typeof.js
@@ -23,3 +23,25 @@ typeof_evaluation: {
h='undefined';
}
}
+
+typeof_in_boolean_context: {
+ options = {
+ booleans : true,
+ evaluate : true,
+ conditionals : true,
+ };
+ input: {
+ function f1(x) { return typeof x ? "yes" : "no"; }
+ function f2() { return typeof g()? "Yes" : "No"; }
+ typeof 0 ? foo() : bar();
+ !typeof console.log(1);
+ var a = !typeof console.log(2);
+ }
+ expect: {
+ function f1(x) { return "yes"; }
+ function f2() { return g(), "Yes"; }
+ foo();
+ !(console.log(1), !0);
+ var a = !(console.log(2), !0);
+ }
+}