From: Alex Lam S.L Date: Mon, 18 Dec 2017 21:22:05 +0000 (+0800) Subject: add test for #2613 (#2618) X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=032f096b7f39d12c303e4d0c096619ad3c9f9384;p=UglifyJS.git add test for #2613 (#2618) --- diff --git a/test/compress/functions.js b/test/compress/functions.js index c8b7ed6f..41dfc6a9 100644 --- a/test/compress/functions.js +++ b/test/compress/functions.js @@ -1050,6 +1050,24 @@ unsafe_call_2: { expect_stdout: true } +unsafe_call_3: { + options = { + side_effects: true, + unsafe: true, + } + input: { + console.log(function() { + return arguments[0] + eval("arguments")[1]; + }.call(0, 1, 2)); + } + expect: { + console.log(function() { + return arguments[0] + eval("arguments")[1]; + }(1, 2)); + } + expect_stdout: "3" +} + issue_2616: { options = { evaluate: true,