aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/function-caller.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/mjsunit/function-caller.js')
-rw-r--r--deps/v8/test/mjsunit/function-caller.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/test/mjsunit/function-caller.js b/deps/v8/test/mjsunit/function-caller.js
index 84f3cbed2f..7443cf71a9 100644
--- a/deps/v8/test/mjsunit/function-caller.js
+++ b/deps/v8/test/mjsunit/function-caller.js
@@ -47,7 +47,7 @@ f(null);
eval('f(null)');
// Check called from strict builtin functions.
-// [null, null].sort(f); // Does not work because sort tail calls.
+[null, null].sort(f);
[null].forEach(f, null);
// Check called from sloppy builtin functions.