| Summary: | ASSERTION FAILED: regExp->isValid() LLIntSlowPaths.cpp(625) | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Michael Saboff <msaboff> |
| Component: | JavaScriptCore | Assignee: | Michael Saboff <msaboff> |
| Status: | RESOLVED FIXED | ||
| Severity: | Normal | CC: | webkit-bug-importer |
| Priority: | P2 | Keywords: | InRadar |
| Version: | WebKit Nightly Build | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
|
Description
Michael Saboff
2022-05-30 11:31:05 PDT
Here is a test case:
function testRegExp()
{
/((a{100000000})*b{2100000000})+/.test("b");
}
function test(testRE)
{
for (let i = 0; i < 5000; ++i) {
try {
testRE();
} catch {};
}
}
test(testRegExp);
Pull request: https://github.com/WebKit/WebKit/pull/1163 Committed r295066 (251161@main): <https://commits.webkit.org/251161@main> Reviewed commits have been landed. Closing PR #1163 and removing active labels. |