Hi! I just ran into a parse tree that looks incorrect to me. The following is parsed as a call expression, where the function is itself a range expression - rather than just being parsed as a range expression.
Expected:
(range_expression (integer_literal) (parenthesized_expression (integer_literal)))
Actual:
(call_expression function: (range_expression (integer_literal)) arguments: (arguments (integer_literal)))