blob: 16ddde16961cd0cbd42d0d64118a85a0241ee9c2 [file] [log] [blame]
Emily Bernierd0a1eb72015-03-24 16:35:39 -04001// Copyright 2014 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
5var a = [];
6var endIndex = 0xffff;
7a[endIndex] = 3;
8Object.defineProperty(a, 0, { get: function() { this[1] = 2; return 1; } });
9assertEquals('123', a.join(''));
10delete a[1]; // reset the array
11assertEquals('1,2,', a.join().slice(0, 4));