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

Unified Diff: test/mjsunit/top-level-assignments.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/tools/tickprocessor.js ('k') | test/mjsunit/try.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/top-level-assignments.js
diff --git a/test/mjsunit/top-level-assignments.js b/test/mjsunit/top-level-assignments.js
index 7acc9c114c854fee1f63d18e8dd36612b610ffdd..c9cc8a56545ee03f3f2381472a76aa97f437499b 100644
--- a/test/mjsunit/top-level-assignments.js
+++ b/test/mjsunit/top-level-assignments.js
@@ -49,7 +49,7 @@ assertEquals(84, y.c);
var z = new Object();
z.a = 3;
-function forty_two() { return 42; };
+function forty_two() { return 42; }
z.a += 4;
z.b = forty_two;
z.c = 12;
@@ -96,7 +96,7 @@ assertEquals(200, calc.product());
assertEquals(2, calc.quotient());
var x = new Object();
-x.__defineGetter__('a', function() { return 7 });
+x.__defineGetter__('a', function() { return 7; });
x.b = function() { return 42; };
x.c = 88;
x.d = "A Man Called Horse";
« no previous file with comments | « test/mjsunit/tools/tickprocessor.js ('k') | test/mjsunit/try.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698