Commit 21b7af78 authored by rossberg@chromium.org's avatar rossberg@chromium.org

Fix strict mode test case, so that it succeeds for the right reason.

R=mstarzinger@chromium.org
BUG=

Review URL: https://codereview.chromium.org/11348196

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@13048 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 085bf78c
......@@ -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();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment