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

Unified Diff: test/mjsunit/regexp-lookahead.js

Issue 8888006: Make more JS files beter match the coding standard. Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address review comments Created 9 years 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
« no previous file with comments | « test/mjsunit/regexp-captures.js ('k') | test/mjsunit/regexp-static.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regexp-lookahead.js
diff --git a/test/mjsunit/regexp-lookahead.js b/test/mjsunit/regexp-lookahead.js
index 1188b56078e1964217dd16dfb4cd39be86307d1b..86e1b75ca3c605c8699eb03a3c0d9485ca57ced7 100644
--- a/test/mjsunit/regexp-lookahead.js
+++ b/test/mjsunit/regexp-lookahead.js
@@ -140,7 +140,7 @@ execRE(re, "xy", ["", undefined, undefined]);
re = /^(?=(x)(?!(y)))/;
testRE(re, "xz", true);
-testRE(re, "xy", false)
+testRE(re, "xy", false);
execRE(re, "xz", ["", "x", undefined]);
re = /^(?!(x)(?=(y)))/;
« no previous file with comments | « test/mjsunit/regexp-captures.js ('k') | test/mjsunit/regexp-static.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698