keywords top-level constant
Keywords map.
Implementation
const Map<String, TokenType> keywords = {
'true': TokenType.boolean,
'false': TokenType.boolean,
'null': TokenType.nullLiteral,
'and': TokenType.and,
'or': TokenType.or,
'not': TokenType.not,
};