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/eval-enclosing-function-name.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/eval.js ('k') | test/mjsunit/extra-arguments.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/eval-enclosing-function-name.js
diff --git a/test/mjsunit/eval-enclosing-function-name.js b/test/mjsunit/eval-enclosing-function-name.js
index 422f03f37309ca0abfd87e278ba80bfefb81870e..9ed81a3440a06a4516abbd0cb15e013a87c6f429 100644
--- a/test/mjsunit/eval-enclosing-function-name.js
+++ b/test/mjsunit/eval-enclosing-function-name.js
@@ -48,29 +48,29 @@ f = function y() { y &= y; return typeof y; };
assertEquals("function", f());
-f = function y() { y = 3; return eval('typeof y'); }
+f = function y() { y = 3; return eval('typeof y'); };
assertEquals("function", f());
-f = function y() { var y = 3; return typeof y; }
+f = function y() { var y = 3; return typeof y; };
assertEquals("number", f());
-f = function y() { var y = 3; return eval('typeof y'); }
+f = function y() { var y = 3; return eval('typeof y'); };
assertEquals("number", f());
-f = function y() { eval('y = 3'); return typeof y; }
+f = function y() { eval('y = 3'); return typeof y; };
assertEquals("function", f());
-f = function y() { eval('y = 3'); return eval('typeof y'); }
+f = function y() { eval('y = 3'); return eval('typeof y'); };
assertEquals("function", f());
-f = function y() { eval('var y = 3'); return typeof y; }
+f = function y() { eval('var y = 3'); return typeof y; };
assertEquals("number", f());
-f = function y() { eval('var y = 3'); return eval('typeof y'); }
+f = function y() { eval('var y = 3'); return eval('typeof y'); };
assertEquals("number", f());
« no previous file with comments | « test/mjsunit/eval.js ('k') | test/mjsunit/extra-arguments.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698