Skip to content
New issue

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

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

Already on GitHub? # to your account

Property escape sequences false positive #52

Closed
ccleve opened this issue Feb 2, 2022 · 2 comments
Closed

Property escape sequences false positive #52

ccleve opened this issue Feb 2, 2022 · 2 comments
Labels
bug Something isn't working

Comments

@ccleve
Copy link

ccleve commented Feb 2, 2022

grammar;
pub Term = { <Word> };
Word: String = <w:r"\p{L}"> => w;

There's a red squiggle under \p{L]} that says "Property escape sequences are not supported in this regex dialect", but the code compiles and runs fine.

@AzureMarker
Copy link
Owner

Looks like the plugin is using a different regex dialect than what LALRPOP accepts.

@AzureMarker AzureMarker added the bug Something isn't working label Feb 3, 2022
@AzureMarker
Copy link
Owner

The fix is releasing with 0.2.9

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants