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

Unified Diff: test/mjsunit/regress/regress-3185905.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/regress/regress-3006390.js ('k') | test/mjsunit/regress/regress-3199913.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-3185905.js
diff --git a/test/mjsunit/regress/regress-3185905.js b/test/mjsunit/regress/regress-3185905.js
index bd611ab14ea5d1aa01b86e74e43723b424c48c89..76fd2f5d3065033a1247ea59ab3e7b0576bf0de9 100644
--- a/test/mjsunit/regress/regress-3185905.js
+++ b/test/mjsunit/regress/regress-3185905.js
@@ -31,7 +31,7 @@ function test1(x) {
x = 2;
assertEquals(2, x);
}
-test1(0)
+test1(0);
function test2(x) {
var a = arguments.callee;
@@ -39,7 +39,7 @@ function test2(x) {
x++;
assertEquals(2, x);
}
-test2(0)
+test2(0);
function test3(x) {
var a = arguments.callee;
@@ -47,14 +47,14 @@ function test3(x) {
x += 1;
assertEquals(2, x);
}
-test3(0)
+test3(0);
function test4(x) {
var arguments = { 0 : 3, 'x' : 4 };
x += 1;
x += 1;
assertEquals(2, x);
- assertEquals(3, arguments[0])
- assertEquals(4, arguments['x'])
+ assertEquals(3, arguments[0]);
+ assertEquals(4, arguments['x']);
}
-test4(0)
+test4(0);
« no previous file with comments | « test/mjsunit/regress/regress-3006390.js ('k') | test/mjsunit/regress/regress-3199913.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698