2020-04-06 13:48:53 +00:00
|
|
|
// Copyright 2020 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.
|
|
|
|
//
|
2021-03-30 17:28:10 +00:00
|
|
|
// Flags: --allow-natives-syntax --stack-size=1200
|
2020-04-06 13:48:53 +00:00
|
|
|
|
|
|
|
const needle = Array(1802).join(" +") + Array(16884).join("A");
|
|
|
|
const string = "A";
|
|
|
|
|
|
|
|
assertEquals(string.search(needle), -1);
|
|
|
|
assertEquals(string.search(needle), -1);
|