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

Unified Diff: test/mjsunit/regexp.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/receiver-in-with-calls.js ('k') | test/mjsunit/regexp-capture.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regexp.js
diff --git a/test/mjsunit/regexp.js b/test/mjsunit/regexp.js
index 3c4f883bdc1503dcf0fcd3ac651471279176075a..d2af93e87231f371d9e1a5a4f3fa62e31abe6114 100644
--- a/test/mjsunit/regexp.js
+++ b/test/mjsunit/regexp.js
@@ -320,7 +320,7 @@ assertEquals("xaBcAbCABCx,aBc",
for (var i = 0; i < 128; i++) {
var testName = "backref-ASCII-char-" + i + "," + (i^0x20);
- var test = /^(.)\1$/i.test(String.fromCharCode(i, i ^ 0x20))
+ var test = /^(.)\1$/i.test(String.fromCharCode(i, i ^ 0x20));
var c = String.fromCharCode(i);
if (('A' <= c && c <= 'Z') || ('a' <= c && c <= 'z')) {
assertTrue(test, testName);
« no previous file with comments | « test/mjsunit/receiver-in-with-calls.js ('k') | test/mjsunit/regexp-capture.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698