-
Notifications
You must be signed in to change notification settings - Fork 756
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
Add support for ES6 Unicode #17
Comments
before I start@JexCheng hi! \p{ .. } / \P{ ... } are not supported in RegulexAs in RegExp Unicode Property Escapes by TC39 there are now some more Unicode sets that you can add with /\p{Decimal_Number}/u There are some good documentations here. As we are now heavily dependent on Regulex's parser we want to invest on it. If you like we like to contribute back. So we like to handle this. Just we would love to know how you like the AST structure for this new elements to be. |
@pmkary This project will be fully rewrited in another compile to js X language(but keep AST compatible), so currently these features would not be made in this version. |
Thank you. So I think we have to fork the project. Looking forward towards your new compiler. |
How about now 👀 |
Support
/\u{12345}/u
.The text was updated successfully, but these errors were encountered: