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

Unified Diff: test/mjsunit/value-callic-prototype-change.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/unbox-double-arrays.js ('k') | test/mjsunit/value-of.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/value-callic-prototype-change.js
diff --git a/test/mjsunit/value-callic-prototype-change.js b/test/mjsunit/value-callic-prototype-change.js
index 52f06297b024bc4547ed050a575cc3221d0d4fde..e6c170935ef9cce5c29a18cdcb2196699fea9586 100644
--- a/test/mjsunit/value-callic-prototype-change.js
+++ b/test/mjsunit/value-callic-prototype-change.js
@@ -32,7 +32,7 @@ function testString() {
function f(s, expected) {
var result = s.toString();
assertEquals(expected, result);
- };
+ }
for (var i = 0; i < 10; i++) {
var s = String.fromCharCode(i);
@@ -56,7 +56,7 @@ function testNumber() {
function f(n, expected) {
var result = n.toString();
assertEquals(expected, result);
- };
+ }
for (var i = 0; i < 10; i++) {
f(i, 0);
@@ -78,7 +78,7 @@ function testBoolean() {
function f(b, expected) {
var result = b.toString();
assertEquals(expected, result);
- };
+ }
for (var i = 0; i < 10; i++) {
f((i % 2 == 0), 0);
« no previous file with comments | « test/mjsunit/unbox-double-arrays.js ('k') | test/mjsunit/value-of.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698