Reviewers: Michael Starzinger,
Description:
Fix strict mode test case, so that it succeeds for the right reason.
[email protected]
BUG=
Please review this at https://codereview.chromium.org/11348196/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files:
M test/mjsunit/strict-mode.js
Index: test/mjsunit/strict-mode.js
diff --git a/test/mjsunit/strict-mode.js b/test/mjsunit/strict-mode.js
index
9c9bdfd52d42662f0dcb13e22402e8fc8f1cf5a9..e13ada495eb2943307eeaa75e4c0b6e6016262b0
100644
--- a/test/mjsunit/strict-mode.js
+++ b/test/mjsunit/strict-mode.js
@@ -1160,7 +1160,7 @@ function CheckPillDescriptor(func, name) {
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