// trivia: whitespace
if (isWhitespace(code)) {
pos++;
value += String.fromCharCode(code);
code = text.charCodeAt(pos);
} while (isWhitespace(code));
return token = SyntaxKind.Trivia;
}
// trivia: newlines