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(32);
|
|
|
|
var b = 'b'.repeat(%StringMaxLength() / 32 + 1);
|
2014-03-20 12:27:36 +00:00
|
|
|
|
|
|
|
function replace() {
|
|
|
|
a.replace(/a/g, function() { return b });
|
|
|
|
}
|
|
|
|
|
|
|
|
assertThrows(replace, RangeError);
|