aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAlex Lam S.L <alexlamsl@gmail.com>2017-06-15 12:14:16 +0800
committerGitHub <noreply@github.com>2017-06-15 12:14:16 +0800
commitb85a358deb70615596bf5ffc668e2ac282453f88 (patch)
tree92efbc378d99b3399eb211c053309c3e1eb37b80 /test
parent43697958f368b41aee3cd704473ad6c1ea53ae8c (diff)
downloadtracifyjs-b85a358deb70615596bf5ffc668e2ac282453f88.tar.gz
tracifyjs-b85a358deb70615596bf5ffc668e2ac282453f88.zip
suppress `inline` of `this` (#2103)
fixes #2101
Diffstat (limited to 'test')
-rw-r--r--test/compress/functions.js49
1 files changed, 49 insertions, 0 deletions
diff --git a/test/compress/functions.js b/test/compress/functions.js
index 909a57dd..c2794f26 100644
--- a/test/compress/functions.js
+++ b/test/compress/functions.js
@@ -365,3 +365,52 @@ issue_2097: {
}
expect_stdout: "1"
}
+
+issue_2101: {
+ options = {
+ inline: true,
+ }
+ input: {
+ a = {};
+ console.log(function() {
+ return function() {
+ return this.a;
+ }();
+ }() === function() {
+ return a;
+ }());
+ }
+ expect: {
+ a = {};
+ console.log(function() {
+ return this.a;
+ }() === a);
+ }
+ expect_stdout: "true"
+}
+
+inner_ref: {
+ options = {
+ inline: true,
+ unused: true,
+ }
+ input: {
+ console.log(function(a) {
+ return function() {
+ return a;
+ }();
+ }(1), function(a) {
+ return function(a) {
+ return a;
+ }();
+ }(2));
+ }
+ expect: {
+ console.log(function(a) {
+ return a;
+ }(1), function(a) {
+ return a;
+ }());
+ }
+ expect_stdout: "1 undefined"
+}