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

Unified Diff: test/mjsunit/regress/regress-1015.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/regexp-static.js ('k') | test/mjsunit/regress/regress-1030466.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-1015.js
diff --git a/test/mjsunit/regress/regress-1015.js b/test/mjsunit/regress/regress-1015.js
index 9e4406a9aabade1fa40dd13bd439a1d395dbe5cd..4d7fd6b95dc46c53a5ceb2f7c8558719d9d23894 100644
--- a/test/mjsunit/regress/regress-1015.js
+++ b/test/mjsunit/regress/regress-1015.js
@@ -31,7 +31,7 @@
// therefore not hit setters in the prototype.
function mkFail(message) {
- return function () { assertUnreachable(message); }
+ return function () { assertUnreachable(message); };
}
Object.defineProperty(Object.prototype, "foo",
@@ -43,8 +43,8 @@ function inFunction() {
for (var i = 0; i < 10; i++) {
// in loop.
var ja = JSON.parse('[1,2,3,4]');
- var jo = JSON.parse('{"bar": 10, "foo": 20}')
- var jop = JSON.parse('{"bar": 10, "__proto__": { }, "foo": 20}')
+ var jo = JSON.parse('{"bar": 10, "foo": 20}');
+ var jop = JSON.parse('{"bar": 10, "__proto__": { }, "foo": 20}');
var a = [1,2,3,4];
var o = { bar: 10, foo: 20 };
var op = { __proto__: { set bar(v) { assertUnreachable("bset"); } },
@@ -55,8 +55,8 @@ function inFunction() {
for (var i = 0; i < 10; i++) {
// In global scope.
var ja = JSON.parse('[1,2,3,4]');
- var jo = JSON.parse('{"bar": 10, "foo": 20}')
- var jop = JSON.parse('{"bar": 10, "__proto__": { }, "foo": 20}')
+ var jo = JSON.parse('{"bar": 10, "foo": 20}');
+ var jop = JSON.parse('{"bar": 10, "__proto__": { }, "foo": 20}');
var a = [1,2,3,4];
var o = { bar: 10, foo: 20 };
var op = { __proto__: { set bar(v) { assertUnreachable("bset"); } },
« no previous file with comments | « test/mjsunit/regexp-static.js ('k') | test/mjsunit/regress/regress-1030466.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698