tree-sitter-elixir
tree-sitter-elixir copied to clipboard
grammar: parse Ranges / .. operator
In Elixir, we can define Ranges using ..
operator, which the parser still needs to learn about. For example, these are valid Ranges:
nums = 1 .. 10
, alphabet = ?a .. ?z