Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[libc++] <regex>: Undefined backreferences should match empty string #133360

Open
Alcaro opened this issue Mar 28, 2025 · 0 comments
Open

[libc++] <regex>: Undefined backreferences should match empty string #133360

Alcaro opened this issue Mar 28, 2025 · 0 comments
Labels
libc++ libc++ C++ Standard Library. Not GNU libstdc++. Not libc++abi. regex Issues related to regex

Comments

@Alcaro
Copy link
Contributor

Alcaro commented Mar 28, 2025

> /(a)?\1/.exec("")
Array [ "", undefined ]
> /(a)?\1/.exec("a")
Array [ "", undefined ]
> /(a)?\1/.exec("aa")
Array [ "aa", "a" ]

~Firefox

But in libc++, the equivalent operations return null, null and [ "aa", "a" ]. The spec is unambiguous; https://262.ecma-international.org/5.1/#sec-15.10.2.9 5.3 says unmatched backreferences should match the empty string.

Full example: https://godbolt.org/z/ndrqej718 (libstdc++ has the same bug)

Found in this battery of tests - most or all of the libc++ failures are this, #133314, or both.

@llvmbot llvmbot added the libc++ libc++ C++ Standard Library. Not GNU libstdc++. Not libc++abi. label Mar 28, 2025
@frederick-vs-ja frederick-vs-ja added the regex Issues related to regex label Mar 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
libc++ libc++ C++ Standard Library. Not GNU libstdc++. Not libc++abi. regex Issues related to regex
Projects
None yet
Development

No branches or pull requests

3 participants