Mismatched Token Error happens when the parser attempted to consume a terminal and failed. It corresponds to a failed {@link Parser.CONSUME} in Chevrotain DSL terms.
A No Viable Alternative Error happens when the parser cannot detect any valid alternative in an alternation. It corresponds to a failed {@link Parser.OR} in Chevrotain DSL terms.
A Redundant Input Error happens when the parser has completed parsing but there is still unprocessed input remaining.
Generated using TypeDoc
An Early Exit Error happens when the parser cannot detect the first mandatory iteration of a repetition. It corresponds to a failed {@link Parser.AT_LEAST_ONE} or {@link Parser.AT_LEAST_ONE_SEP} in Chevrotain DSL terms.