The following is valid syntax where both One and Two are valid enum IDs.
enum MyEnum { One = 1Two = 2 }
Issue
Currently, without a space between 1 and Two, Soft-parser generates an AST with the assignment One = 1Two.
Narrowing expression parsers in #387 resolves this.
The following is valid syntax where both
OneandTwoare valid enum IDs.Issue
Currently, without a space between
1andTwo, Soft-parser generates an AST with the assignmentOne = 1Two.Narrowing expression parsers in #387 resolves this.