antlr4
antlr4 copied to clipboard
Alt label completion analysis does not consider baseContext
expression
: ID # alt1
;
expression2 // expected error (too few alt labels)
options { baseContext = expression; }
: ID
;
ID : [a-z]+;