diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2020-11-09 02:47:02 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-09 10:47:02 +0800 |
commit | 41310e6404951cf9be119cb7cb478be73a98300d (patch) | |
tree | 051a461a5a61a93c11b39a0b82a72a455cb90fcd /test | |
parent | 91fc1c82b56986df51ad1450c18718bc585deca9 (diff) | |
download | tracifyjs-41310e6404951cf9be119cb7cb478be73a98300d.tar.gz tracifyjs-41310e6404951cf9be119cb7cb478be73a98300d.zip |
fix corner case in `objects` (#4270)
fixes #4269
Diffstat (limited to 'test')
-rw-r--r-- | test/compress/objects.js | 104 |
1 files changed, 104 insertions, 0 deletions
diff --git a/test/compress/objects.js b/test/compress/objects.js index 3fb6ec04..51b7bcc4 100644 --- a/test/compress/objects.js +++ b/test/compress/objects.js @@ -256,3 +256,107 @@ keep_computed_key: { expect_stdout: "PASS" node_version: ">=4" } + +issue_4269_1: { + options = { + evaluate: true, + objects: true, + } + input: { + console.log({ + get 0() { + return "FAIL"; + }, + [0]: "PASS", + }[0]); + } + expect: { + console.log({ + get 0() { + return "FAIL"; + }, + [0]: "PASS", + }[0]); + } + expect_stdout: "PASS" + node_version: ">=4" +} + +issue_4269_2: { + options = { + evaluate: true, + objects: true, + } + input: { + console.log({ + get [0]() { + return "FAIL"; + }, + 0: "PASS", + }[0]); + } + expect: { + console.log({ + get [0]() { + return "FAIL"; + }, + 0: "PASS", + }[0]); + } + expect_stdout: "PASS" + node_version: ">=4" +} + +issue_4269_3: { + options = { + evaluate: true, + objects: true, + } + input: { + console.log({ + ["foo"]: "bar", + get 42() { + return "FAIL"; + }, + 42: "PASS", + }[42]); + } + expect: { + console.log({ + ["foo"]: "bar", + get 42() { + return "FAIL"; + }, + 42: "PASS", + }[42]); + } + expect_stdout: "PASS" + node_version: ">=4" +} + +issue_4269_4: { + options = { + evaluate: true, + objects: true, + } + input: { + console.log({ + get 42() { + return "FAIL"; + }, + ["foo"]: "bar", + 42: "PASS", + }[42]); + } + expect: { + console.log({ + get 42() { + return "FAIL"; + }, + ["foo"]: "bar", + 42: "PASS", + }[42]); + } + expect_stdout: "PASS" + node_version: ">=4" +} |