This repository has been archived by the owner on Dec 12, 2024. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove MISSING identifier on
def foo()
.
For: ```Crystal def foo_bar() end ``` It nos generates: ``` source_file [0, 0] - [2, 0] def [0, 0] - [1, 3] method_def [0, 0] - [1, 3] name: identifier [0, 4] - [0, 11] ``` instead of: ``` source_file [0, 0] - [2, 0] def [0, 0] - [1, 3] method_def [0, 0] - [1, 3] name: identifier [0, 4] - [0, 11] params: method_param [0, 12] - [0, 12] name: MISSING identifier [0, 12] - [0, 12] ```
- Loading branch information