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

Unified Diff: test/mjsunit/compiler/assignment-deopt.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/closures.js ('k') | test/mjsunit/compiler/call-keyed.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/compiler/assignment-deopt.js
diff --git a/test/mjsunit/compiler/assignment-deopt.js b/test/mjsunit/compiler/assignment-deopt.js
index 2b006254171c32b969c73f0236cf1ebe1b96880e..cf22103f20c347a9bcd1267d0616621f484b1b0e 100644
--- a/test/mjsunit/compiler/assignment-deopt.js
+++ b/test/mjsunit/compiler/assignment-deopt.js
@@ -40,7 +40,7 @@ assertEquals(2.1, o.x);
// Test deopt with count operation on named property.
-function assign2(p) { p.x += 1 }
+function assign2(p) { p.x += 1; }
o.x = "42";
assign2(o);
@@ -127,7 +127,7 @@ q[0] = 42.1;
assertEquals(44.1, assign9(q, 1));
// Test deopt because of a failed map check on the load.
-function assign10(p) { return p.x += 1 }
+function assign10(p) { return p.x += 1; }
var g1 = {x:0};
var g2 = {y:0, x:42};
for (var i = 0; i < 5; ++i) {
« no previous file with comments | « test/mjsunit/closures.js ('k') | test/mjsunit/compiler/call-keyed.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698