2017-03-29 07:18:10 +00: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-06-05 07:37:23 +00:00
|
|
|
// Flags: --stack-size=100
|
2017-03-29 07:18:10 +00:00
|
|
|
|
|
|
|
function call_replace_close_to_stack_overflow() {
|
|
|
|
try {
|
|
|
|
call_replace_close_to_stack_overflow();
|
2018-06-05 07:37:23 +00:00
|
|
|
} catch {
|
2017-03-29 07:18:10 +00:00
|
|
|
"b".replace(/(b)/g);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
call_replace_close_to_stack_overflow();
|