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

Unified Diff: test/mjsunit/regress/regress-931.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-91008.js ('k') | test/mjsunit/regress/regress-95920.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-931.js
diff --git a/test/mjsunit/regress/regress-931.js b/test/mjsunit/regress/regress-931.js
index d2fb8cc2b79e7815f21320b7e259b37a0b09c3c7..d5e00cd8a04694d0dddf7061ca2cc60e7f514d7c 100644
--- a/test/mjsunit/regress/regress-931.js
+++ b/test/mjsunit/regress/regress-931.js
@@ -30,19 +30,19 @@
var sequence = '';
var o = { f: function (x, y) { return x + y; },
- 2: function (x, y) { return x - y} };
+ 2: function (x, y) { return x - y; } };
function first() { sequence += "1"; return o; }
function second() { sequence += "2"; return "f"; }
function third() { sequence += "3"; return 3; }
function fourth() { sequence += "4"; return 4; }
-var result = (first()[second()](third(), fourth()))
+var result = (first()[second()](third(), fourth()));
assertEquals(7, result);
assertEquals("1234", sequence);
function second_prime() { sequence += "2'"; return 2; }
-var result = (first()[second_prime()](third(), fourth()))
+var result = (first()[second_prime()](third(), fourth()));
assertEquals(-1, result);
assertEquals("123412'34", sequence);
« no previous file with comments | « test/mjsunit/regress/regress-91008.js ('k') | test/mjsunit/regress/regress-95920.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698