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

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

Issue 1553463002: Only verify in-object fields in fast properties case. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Ignition cannot deal with the test case yet. Created 5 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/mjsunit.status ('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-572590.js
diff --git a/test/message/destructuring-modify-const.js b/test/mjsunit/regress/regress-crbug-572590.js
similarity index 60%
copy from test/message/destructuring-modify-const.js
copy to test/mjsunit/regress/regress-crbug-572590.js
index 88bda351d8e12ef06fd895e9617dee5829824440..5871005423a8c6af85fb04cbb56347d6abac950f 100644
--- a/test/message/destructuring-modify-const.js
+++ b/test/mjsunit/regress/regress-crbug-572590.js
@@ -2,8 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// Flags: --harmony-destructuring-bind
-'use strict';
+// Flags: --expose-gc --verify-heap
-const { x : x, y : y } = { x : 1, y : 2 };
-x++;
+function g() { }
+var f = g.bind();
+f.__defineGetter__('length', g);
+gc();
« no previous file with comments | « test/mjsunit/mjsunit.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698