symbol method
Writes the lexeme, unchanged.
Implementation
void symbol(
String lexeme, {
bool spaceBefore = false,
bool spaceAfter = false,
}) {
if (needsSpace && spaceBefore) {
_space();
}
buffer.write(lexeme);
needsSpace = spaceAfter;
}