tunnelvisionlabs / antlr4

The highly-optimized fork of ANTLR 4 (see README)
Other
73 stars 12 forks source link

Alt label alias analysis does not consider baseContext #45

Closed sharwell closed 5 years ago

sharwell commented 5 years ago
expression
  : ID # alt1
  ;

expression2
options { baseContext = expression; }
  : ID # alt1 // unexpected error
  ;

ID : [a-z]+;