Umlaute in variable names #9
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Java allows all unicode-letters in variable names, not only latin letters. Is there a chance to include these characters in the identifier regex?
Otherwise, this is how valid java code would look like:
My current approach is to copy-paste the grammar and change it from
github.com/lezer-parser/java@14901c5f4a/src/java.grammar (L712-L714)to
Attached patch should help with this.
Thank you, it's working now!