Lexer.KEYWORDS

Hash table of keywords

struct Lexer
static immutable
auto KEYWORDS = redBlackTree("true", "false", "undefined", "null", "var", "let", "const", "if", "else", "while", "do", "for", "in", "switch", "case", "default", "break", "continue", "return", "function", "class", "super", "extends", "new", "delete", "typeof", "instanceof", "throw", "try", "catch", "finally", "yield");

Meta