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

Side by Side Diff: test/mjsunit/regress/regress-crbug-516775.js

Issue 1270403002: Fix Array.prototype.concat for arguments object with getter. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 4 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 unified diff | Download patch
« src/runtime/runtime-array.cc ('K') | « src/runtime/runtime-array.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Flags: --allow-natives-syntax
6
7 function argument_with_length_getter(f) {
8 arguments.__defineGetter__('length', f);
9 return arguments;
10 }
11
12 var a1 = [];
13 %NormalizeElements(a1);
14 a1.__proto__ = argument_with_length_getter(function() { return 'boom' });
15 [].concat(a1);
16
17 var a2 = [];
18 %NormalizeElements(a2);
19 a2.__proto__ = argument_with_length_getter(function() { throw 'boom' });
20 assertThrows(function() { [].concat(a2); });
adamk 2015/08/05 18:05:53 As I said over on the bug, I think this behavior i
Michael Starzinger 2015/08/05 19:37:28 +1. My understanding of the expected behavior is s
OLDNEW
« src/runtime/runtime-array.cc ('K') | « src/runtime/runtime-array.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698