crystal-lang-tools/intellij-crystal-lang

Parsing Errors

jeffbdavenport opened this issue · 0 comments

Rubymine shows an error below %w and %i Arrays, as well as backticks

CONSTANT = %w(first second)
CONSTANT2 = %i(first second)
`command`

It doesn't seem to understand how to parse enums for example

enum FUNCTIONS
  SAVE
  RESTORE
end