aboutsummaryrefslogtreecommitdiff
path: root/test/compress/properties.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/compress/properties.js')
-rw-r--r--test/compress/properties.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/compress/properties.js b/test/compress/properties.js
index f2e59321..6d4c0281 100644
--- a/test/compress/properties.js
+++ b/test/compress/properties.js
@@ -1028,3 +1028,29 @@ new_this: {
}(42);
}
}
+
+issue_2513: {
+ options = {
+ evaluate: true,
+ properties: true,
+ }
+ input: {
+ !function(Infinity, NaN, undefined) {
+ console.log("a"[1/0], "b"["Infinity"]);
+ console.log("c"[0/0], "d"["NaN"]);
+ console.log("e"[void 0], "f"["undefined"]);
+ }(0, 0, 0);
+ }
+ expect: {
+ !function(Infinity, NaN, undefined) {
+ console.log("a"[1/0], "b"[1/0]);
+ console.log("c".NaN, "d".NaN);
+ console.log("e"[void 0], "f"[void 0]);
+ }(0, 0, 0);
+ }
+ expect_stdout: [
+ "undefined undefined",
+ "undefined undefined",
+ "undefined undefined",
+ ]
+}