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

Unified Diff: test/mjsunit/compiler/compare.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/compiler/call-keyed.js ('k') | test/mjsunit/compiler/count-deopt.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/compiler/compare.js
diff --git a/test/mjsunit/compiler/compare.js b/test/mjsunit/compiler/compare.js
index 460b0ab003c96404319ab9abf97ca007dc63cdfd..cc00b42784554999974bb826e1e7e1717d9f8d2c 100644
--- a/test/mjsunit/compiler/compare.js
+++ b/test/mjsunit/compiler/compare.js
@@ -59,7 +59,7 @@ TestPrimitive(1, 1, 0);
TestPrimitive(4, 3, 4);
TestPrimitive(4, 4, 3);
TestPrimitive(0, -1, 0);
-TestPrimitive(0, 0, -1)
+TestPrimitive(0, 0, -1);
TestPrimitive(-2, -2, -3);
TestPrimitive(-2, -3, -2);
@@ -68,7 +68,7 @@ TestPrimitive(1, 1, 0.1);
TestPrimitive(4, 3.1, 4);
TestPrimitive(4, 4, 3.1);
TestPrimitive(0, -1.1, 0);
-TestPrimitive(0, 0, -1.1)
+TestPrimitive(0, 0, -1.1);
TestPrimitive(-2, -2, -3.1);
TestPrimitive(-2, -3.1, -2);
« no previous file with comments | « test/mjsunit/compiler/call-keyed.js ('k') | test/mjsunit/compiler/count-deopt.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698