You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a grammar contains a rule with one of the following names, the generated code will not compile due to a name conflict.
parserRule (generates ParserRuleContext)
rule (generates RuleContext)
Note: A rule named prediction would produce PredictionContext, but that shouldn't be a problem since the generated parser doesn't directly depend on PredictionContext.
The text was updated successfully, but these errors were encountered:
If a grammar contains a rule with one of the following names, the generated code will not compile due to a name conflict.
parserRule
(generatesParserRuleContext
)rule
(generatesRuleContext
)Note: A rule named
prediction
would producePredictionContext
, but that shouldn't be a problem since the generated parser doesn't directly depend onPredictionContext
.The text was updated successfully, but these errors were encountered: