From e92bc575257a8f198ade85355c688ba250226650 Mon Sep 17 00:00:00 2001 From: alexlamsl Date: Tue, 19 Dec 2017 03:13:44 +0800 Subject: [PATCH] add test for #2613 --- test/compress/functions.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) 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,