2017-05-02 10:50:00 +02:00
|
|
|
// Copyright 2017 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.
|
|
|
|
|
2018-01-24 20:16:06 +01:00
|
|
|
var s = '\u1234-------';
|
|
|
|
for (var i = 0; i < 17; i++) {
|
|
|
|
try {
|
|
|
|
s += s;
|
|
|
|
s += s;
|
|
|
|
} catch (e) {
|
|
|
|
}
|
2017-05-02 10:50:00 +02:00
|
|
|
}
|
2019-11-08 15:39:11 +01:00
|
|
|
s.replace(/a/g);
|