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

Unified Diff: test/mjsunit/regress/regress-1170.js

Issue 7348008: Merge up to 8597 to experimental/gc from the bleeding edge. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/gc/
Patch Set: '' Created 9 years, 5 months 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-1160.js ('k') | test/mjsunit/regress/regress-1172-bis.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-1170.js
===================================================================
--- test/mjsunit/regress/regress-1170.js (revision 8618)
+++ test/mjsunit/regress/regress-1170.js (working copy)
@@ -30,37 +30,43 @@
__proto__.__defineSetter__("a", function(v) { setter_value = v; });
eval("var a = 1");
assertEquals(1, setter_value);
-assertFalse(hasOwnProperty("a"));
+assertFalse(this.hasOwnProperty("a"));
eval("with({}) { eval('var a = 2') }");
assertEquals(2, setter_value);
-assertFalse(hasOwnProperty("a"));
+assertFalse(this.hasOwnProperty("a"));
// Function declarations are treated specially to match Safari. We do
// not call setters for them.
eval("function a() {}");
-assertTrue(hasOwnProperty("a"));
+assertTrue(this.hasOwnProperty("a"));
-__proto__.__defineSetter__("b", function(v) { assertUnreachable(); });
+__proto__.__defineSetter__("b", function(v) { assertUnreachable(); });
+var exception = false;
try {
eval("const b = 23");
- assertUnreachable();
} catch(e) {
+ exception = true;
assertTrue(/TypeError/.test(e));
}
+assertTrue(exception);
+
+exception = false;
try {
eval("with({}) { eval('const b = 23') }");
- assertUnreachable();
} catch(e) {
+ exception = true;
assertTrue(/TypeError/.test(e));
}
+assertTrue(exception);
__proto__.__defineSetter__("c", function(v) { throw 42; });
+exception = false;
try {
eval("var c = 1");
- assertUnreachable();
} catch(e) {
+ exception = true;
assertEquals(42, e);
- assertFalse(hasOwnProperty("c"));
+ assertFalse(this.hasOwnProperty("c"));
}
-
+assertTrue(exception);
« no previous file with comments | « test/mjsunit/regress/regress-1160.js ('k') | test/mjsunit/regress/regress-1172-bis.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698