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
I had a look at this. It looks like elm-syntax checks that function names contain only alpha numeric characters. This excludes letters outside of the ascii alphabet.
There doesn't seem to be an easy fix to this because elm-syntax needs to know if a character is uppercase or lowercase and Elm doesn't provide any API for doing that in general with Unicode characters.
I thought of a hacky solution. We can exploit the fact that String.toLower and String.toUpper do support unicode to implement our own Char.isLower and Char.isUpper
I encountered a problem with elm-syntax while using elm-analyse on the elm-visualization package.
@jfmengels pointed out that the problem is caused by the variable names
ε2
andρ
.Original issue opened here: stil4m/elm-analyse#242
The text was updated successfully, but these errors were encountered: