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

Unified Diff: test/mjsunit/smi-ops.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/simple-constructor.js ('k') | test/mjsunit/smi-ops-inlined.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/smi-ops.js
diff --git a/test/mjsunit/smi-ops.js b/test/mjsunit/smi-ops.js
index 7945855f39c1f8b6181ce48e5fa4091084c3182d..74f993df445aff9708dbcad8480c6990b2ad16c5 100644
--- a/test/mjsunit/smi-ops.js
+++ b/test/mjsunit/smi-ops.js
@@ -235,7 +235,7 @@ assertFalse(v != v);
assertFalse(v !== v);
// Right hand side of unary minus is overwritable.
-v = 1.5
+v = 1.5;
assertEquals(-2.25, -(v * v));
// Smi input to bitop gives non-smi result where the rhs is a float that
@@ -247,9 +247,9 @@ assertEquals(0x40000000, x1 << (x2 - x3), "0x10000000<<1(1)");
// Smi input to bitop gives non-smi result where the rhs could be overwritten
// if it were a float, but it isn't.
-x1 = 0x10000000
-x2 = 4
-x3 = 2
+x1 = 0x10000000;
+x2 = 4;
+x3 = 2;
assertEquals(0x40000000, x1 << (x2 - x3), "0x10000000<<2(2)");
« no previous file with comments | « test/mjsunit/simple-constructor.js ('k') | test/mjsunit/smi-ops-inlined.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698