const expr = this._expr();
if (!this._isAtEnd()) {
const additionalInfo = peek.type === TokenType.Str ? hintUnexpectedToken : undefined;
this._parsingErrors.push({ message: errorUnexpectedToken, offset: peek.offset, lexeme: Scanner.getLexeme(peek), additionalInfo });
throw Parser._parseError;
}
return expr;
} catch (e) {