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

Unified Diff: test/mjsunit/bugs/618.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/break.js ('k') | test/mjsunit/bugs/bug-222.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/bugs/618.js
diff --git a/test/mjsunit/bugs/618.js b/test/mjsunit/bugs/618.js
index ddc0c19c88662d9b62c2751e570a47896884ab9e..28b47fe2b36c5d37803e32b68389dea381adc9f8 100644
--- a/test/mjsunit/bugs/618.js
+++ b/test/mjsunit/bugs/618.js
@@ -28,7 +28,7 @@
// Simple class using inline constructor.
function C1() {
this.x = 23;
-};
+}
var c1 = new C1();
assertEquals(23, c1.x);
assertEquals("undefined", typeof c1.y);
@@ -43,7 +43,7 @@ assertEquals(23, c1.y);
// Simple class using inline constructor.
function C2() {
this.x = 23;
-};
+}
var c2 = new C2();
assertEquals(23, c2.x);
assertEquals("undefined", typeof c2.y);
@@ -58,7 +58,7 @@ assertEquals(23, c2.y);
// Simple class using inline constructor.
function C3() {
this.x = 23;
-};
+}
var c3 = new C3();
assertEquals(23, c3.x);
assertEquals("undefined", typeof c3.y);
@@ -73,7 +73,7 @@ assertEquals(23, c3.y);
// Simple class using inline constructor.
function C4() {
this.x = 23;
-};
+}
var c4 = new C4();
assertEquals(23, c4.x);
assertEquals("undefined", typeof c4.y);
« no previous file with comments | « test/mjsunit/break.js ('k') | test/mjsunit/bugs/bug-222.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698