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

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

Issue 1568863002: Fix^3 cast in HasEnumerableElements (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 11 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 | « 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-569534.js
diff --git a/test/message/arrow-formal-parameters.js b/test/mjsunit/regress/regress-crbug-569534.js
similarity index 73%
copy from test/message/arrow-formal-parameters.js
copy to test/mjsunit/regress/regress-crbug-569534.js
index 30f9c8604800879df5a265a7545ad9476d991e92..e1419ea8b004d9ab6f2e542a28a8603143f52901 100644
--- a/test/message/arrow-formal-parameters.js
+++ b/test/mjsunit/regress/regress-crbug-569534.js
@@ -2,4 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-(b, a, a, d) => a
+var array = [,0.5];
+array.length = 0;
+for (var i in array) {}
« 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