Open expipiplus1 opened 1 year ago
For varids, we use this regex:
varid_pattern = /[_\p{Ll}](\w|')*#?/u
The first character is in the Ll class of lowercase letters, and it's unclear to me whether that would match the combined codepoints or just the a
without diacritic…but since it also fails when the combined character is at a later position, I would assume that the \w
class is insufficient.
Gonna investigate later, but if you have more useful insights, please let me know!
An objectionable file and the treesitter tree:
Thank you for all the hard work maintaining this library btw!