The ParseRunner has a parameter for EnableErrorRecovery. This parameter controls error recovery in the parser and runner.
There are two types of tokens:
Missing Token - a token that is missing is injected into the parse to allow the parse to continue. For example, if you forget to close an HTML tag, that token would be a missing token.
Skip Token - a skip token is a token that is encountered in the parse, but there is no parse rule to handle the token.
Updates build to use git tags for versioning
Using git tags to control version numbers instead of using a versions.txt file
Error Handling and Recovery
The ParseRunner has a parameter for EnableErrorRecovery. This parameter controls error recovery in the parser and runner.
There are two types of tokens:
Updates build to use git tags for versioning
Using git tags to control version numbers instead of using a versions.txt file