Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(49)

Unified Diff: test/mjsunit/regress/regress-2286.js

Issue 12095035: %X => %_X, %_X => %__X (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: rebase and fix spacing issue Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« src/parser.cc ('K') | « test/mjsunit/fuzz-natives-part4.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-2286.js
diff --git a/test/mjsunit/regress/regress-2286.js b/test/mjsunit/regress/regress-2286.js
index 372451ec44ee067789fbf156c782bec6e5b36408..12291e0079a01b38a67af831c8098df0d99f3271 100644
--- a/test/mjsunit/regress/regress-2286.js
+++ b/test/mjsunit/regress/regress-2286.js
@@ -28,5 +28,5 @@
// Flags: --allow-natives-syntax
assertThrows("f()", ReferenceError);
-assertThrows("%f()", TypeError);
-assertThrows("%_f()", SyntaxError);
+assertThrows("%_f()", TypeError);
Michael Starzinger 2013/01/31 15:04:53 We should add a test that a call of "%f()" still t
+assertThrows("%__f()", SyntaxError);
« src/parser.cc ('K') | « test/mjsunit/fuzz-natives-part4.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698