antlr4 icon indicating copy to clipboard operation
antlr4 copied to clipboard

Alt label completion analysis does not consider baseContext

Open sharwell opened this issue 6 years ago • 0 comments

expression
  : ID # alt1
  ;

expression2 // expected error (too few alt labels)
options { baseContext = expression; }
  : ID
  ;

ID : [a-z]+;

sharwell avatar Jan 08 '19 15:01 sharwell