Reviewers: adamk,

Message:
On 2015/02/25 23:17:27, adamk wrote:
Not sure if you meant to send this, but lgtm

I did mean to send it...

PTAL :-)

Description:
Minor test fix to block binding

The test did not invoke the function

BUG=v8:3921
LOG=N
R=adamk

Please review this at https://codereview.chromium.org/961463002/

Base URL: https://chromium.googlesource.com/v8/v8.git@master

Affected files (+4, -2 lines):
  M test/mjsunit/harmony/block-scoping.js


Index: test/mjsunit/harmony/block-scoping.js
diff --git a/test/mjsunit/harmony/block-scoping.js b/test/mjsunit/harmony/block-scoping.js index 001d9fbfd53cc76de21418416df7e303ffaab7e3..29ca8e180e251dee3fdb0da95e5d7b0f43984678 100644
--- a/test/mjsunit/harmony/block-scoping.js
+++ b/test/mjsunit/harmony/block-scoping.js
@@ -101,7 +101,8 @@ function f4(one) {
       assertEquals(4, eval('z'));
       assertEquals(5, eval('u'));
       assertEquals(6, eval('v'));
-    };
+    }
+    f();
   }
 }
 f4(1);
@@ -122,7 +123,8 @@ function f5(one) {
       assertEquals(4, z);
       assertEquals(5, u);
       assertEquals(6, v);
-    };
+    }
+    f();
   }
 }
 f5(1);


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to