Revision: 13048
Author: [email protected]
Date: Fri Nov 23 07:45:03 2012
Log: Fix strict mode test case, so that it succeeds for the right
reason.
[email protected]
BUG=
Review URL: https://codereview.chromium.org/11348196
http://code.google.com/p/v8/source/detail?r=13048
Modified:
/branches/bleeding_edge/test/mjsunit/strict-mode.js
=======================================
--- /branches/bleeding_edge/test/mjsunit/strict-mode.js Tue Oct 18 05:26:53
2011
+++ /branches/bleeding_edge/test/mjsunit/strict-mode.js Fri Nov 23 07:45:03
2012
@@ -1160,7 +1160,7 @@
function recurse(n, then) {
if (n > 0) {
- recurse(n - 1);
+ recurse(n - 1, then);
} else {
return then();
}
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev