You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment names are matched with a "simple" \w regex in the lexer however I dug a bit into the production and it seems it all ends up in a NameChar which matches a much larger array of values.
Is that correct, should we expand the regex to match the full range of NameChars?
At the moment names are matched with a "simple"
\wregex in the lexer however I dug a bit into the production and it seems it all ends up in a NameChar which matches a much larger array of values.Is that correct, should we expand the regex to match the full range of NameChars?