lexical-lsp / lexical

Lexical is a next-generation elixir language server
779 stars 77 forks source link

Fixed crash for in-progress module attributes #691

Closed scohen closed 2 months ago

scohen commented 2 months ago

If you're typing a module attribute before another module attribute, the parser would emit an extra module attribute with the name of @ in addition to the existing module attribute. This change ignores module attributes with the name @.

Fixes #690