export function isWhitespace(token: any): token is WhitespaceToken {
    return typeof token.string === "string" && token.type === WS;
}