void addToken1(TokenType type, Object? literal) { String text = source.substring(start, current); tokens.add(Token(type, text, literal, line, sourceFile: sourceFile)); }