ignatov / intellij-erlang

Erlang IDE
https://www.jetbrains.com/help/idea/2018.2/getting-started-with-erlang.html
Other
733 stars 121 forks source link

Parser should allow $X notation where integers are allowed #996

Closed kvakvs closed 1 year ago

kvakvs commented 1 year ago

Example code

-type valid_chars() :: $A..$Z | $a..$z | $0..$9 | $. | $/ | $_ | $%.

Screenshot 2023-01-02 at 04 33 53

The editor shows red error at $A..$Z while that is a valid integer range.