node/deps/v8/test/mjsunit/regress/regress-708247.js
Michaël Zasso 9d7cd9b864
deps: update V8 to 12.8.374.13
PR-URL: https://github.com/nodejs/node/pull/54077
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
2024-08-16 16:03:01 +02:00

30 lines
782 B
JavaScript

// 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.
// Flags: --predictable
const str = '2016-01-02';
function t() {
var re;
function toDictMode() {
for (var i = 0; i < 100; i++) { // Loop is required.
re.x = 42;
delete re.x;
}
return 0;
}
re = /-/g; // Needs to be global to trigger lastIndex accesses.
re.lastIndex = { valueOf : toDictMode };
return re.exec(str);
}
// Triggering the original bug required about 10K iterations here, but
// having verified the fix, there's not much value in spending so much
// time here on every test run.
for (var q = 0; q < 10; q++) {
t(); // Needs repetitions to trigger a crash.
}