class Mallard::Lexer
- Mallard::Lexer
- Reference
- Object
Defined in:
lexer.crConstant Summary
-
KEYWORDS =
{"let" => :LET, "atom" => :ATOM, "data" => :DATA, "match" => :MATCH, "true" => :TRUE, "false" => :FALSE, "nil" => :NIL}
-
the keywords reserved in the language:
-
OPERATORS =
{"!=" => :NOT_EQUAL, "==" => :EQUAL, "||" => :BINARY_OR, "&&" => :BINARY_AND, "<=" => :LESS_OR_EQ, ">=" => :GREATOR_OR_EQ, "=" => :ASSIGNMENT}