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

Unified Diff: test/mjsunit/regress/regress-95920.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/regress/regress-931.js ('k') | test/mjsunit/regress/regress-962.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-95920.js
diff --git a/test/mjsunit/regress/regress-95920.js b/test/mjsunit/regress/regress-95920.js
index 20e73fbc4026c3969877b6d2e5850d7d2fb2c5c6..8e580c2726eac282c939f07b9da7c8ddd27c425e 100644
--- a/test/mjsunit/regress/regress-95920.js
+++ b/test/mjsunit/regress/regress-95920.js
@@ -32,21 +32,21 @@
assertThrows(function() {
[0].every(function(){ Object.seal((new Int8Array(42))); });
assertUnreable();
- }, TypeError)
+ }, TypeError);
})();
(function() {
assertThrows(function() {
[0].every(function(){ Object.freeze((new Int8Array(42))); });
assertUnreable();
- }, TypeError)
+ }, TypeError);
})();
(function() {
assertThrows(function() {
[0].every(function(){ Object.preventExtensions((new Int8Array(42))); });
assertUnreable();
- }, TypeError)
+ }, TypeError);
})();
(function() {
@@ -54,5 +54,5 @@
Object.defineProperty(new Int8Array(42), "1",
{ writable: false, value: "1" });
assertUnreable();
- })
+ });
})();
« no previous file with comments | « test/mjsunit/regress/regress-931.js ('k') | test/mjsunit/regress/regress-962.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698