Jonathan Revusky
Jonathan Revusky
> [Jon](https://github.com/congo-cc/congo-parser-generator/issues/@revusky), do we really intend for nextToken to change dirty tokens that follow an unparsed token to "unparsed" in **lookahead**? To be honest, I really don't know. Probably I...
> [congo-parser-generator/src/templates/java/Parser.java.ftl](https://github.com/congo-cc/congo-parser-generator/blob/ca93147bbcb74ac2e5ca134d8bb5fd80872d4483/src/templates/java/Parser.java.ftl#L152-L162) > > Lines 152 to 162 in [ca93147](/congo-cc/congo-parser-generator/commit/ca93147bbcb74ac2e5ca134d8bb5fd80872d4483) > > while (result.isUnparsed()) { > #list grammar.parserTokenHooks as methodName > result = ${methodName}(result); > #endlist > result = token_source.getNextToken(result);...
> After reviewing some of the tests and recalling some things, I'm sure the real question I ended up with was whether or not fault tolerance in lookahead made any...