2014-03-20 12:27:36 +00:00
|
|
|
// Copyright 2014 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2017-07-20 13:08:39 +00:00
|
|
|
// Flags: --allow-natives-syntax
|
|
|
|
|
|
|
|
var a = "a".repeat(%StringMaxLength() / 10);
|
2014-03-20 12:27:36 +00:00
|
|
|
var b = [];
|
2017-07-20 13:08:39 +00:00
|
|
|
for (var i = 0; i < 11; i++) b.push(a);
|
2014-03-20 12:27:36 +00:00
|
|
|
|
|
|
|
function join() {
|
|
|
|
b.join();
|
|
|
|
}
|
|
|
|
|
|
|
|
assertThrows(join, RangeError);
|