Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
List-like AST structures now require a comma (as intended) between values, except if there's only one value. We also still allow trailing commas. This ensures that code such as this now results in a parser error: A { @A = 10 @b = 20 } Instead, this should be written like so: A { @A = 10, @b = 20 } This fixes #562. Changelog: fixed
- Loading branch information