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.
|
|
|
|
|
2014-03-25 09:09:24 +00:00
|
|
|
|
|
|
|
|
2014-03-20 12:27:36 +00:00
|
|
|
var a = 'a';
|
|
|
|
for (var i = 0; i < 5; i++) a += a;
|
|
|
|
var b = 'b';
|
|
|
|
for (var i = 0; i < 23; i++) b += b;
|
|
|
|
|
2014-03-25 09:09:24 +00:00
|
|
|
function replace1() {
|
2014-03-20 12:27:36 +00:00
|
|
|
a.replace(/./g, b);
|
|
|
|
}
|
|
|
|
|
2014-03-25 09:09:24 +00:00
|
|
|
assertThrows(replace1, RangeError);
|
|
|
|
|
|
|
|
|
|
|
|
var a = 'a';
|
|
|
|
for (var i = 0; i < 16; i++) a += a;
|
|
|
|
|
|
|
|
function replace2() {
|
|
|
|
a.replace(/a/g, a);
|
|
|
|
}
|
|
|
|
|
|
|
|
assertThrows(replace2, RangeError);
|