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

Unified Diff: test/mjsunit/regress/regress-crbug-663750.js

Issue 2495563002: [runtime] Treat empty property cells properly when doing Object.freeze() on a global object. (Closed)
Patch Set: Created 4 years, 1 month 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 | « src/objects.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-crbug-663750.js
diff --git a/test/mjsunit/regress/regress-crbug-663750.js b/test/mjsunit/regress/regress-crbug-663750.js
index 3ebba92d2ae4f801095a04ba7b802c9c9b451ba0..ba758e77e498cea01d0ef1b5ce68f34933be422a 100644
--- a/test/mjsunit/regress/regress-crbug-663750.js
+++ b/test/mjsunit/regress/regress-crbug-663750.js
@@ -8,6 +8,8 @@ var v = 0;
function foo(a) {
v = a;
}
+this.x = 0;
+delete x;
foo(1);
foo(2);
« no previous file with comments | « src/objects.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698