A templating language that looks like Lisp and compiles to HTML
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tokenTypes.js 253B

1234567891011121314
  1. module.exports = {
  2. ATTRIBUTE: "attribute",
  3. BOOLEAN: "boolean",
  4. COMMA: ",",
  5. CPAREN: ")",
  6. EOF: "EOF",
  7. IDENTIFIER: "identifier",
  8. KEYWORD: "keyword",
  9. LITERAL: "literal",
  10. NUMBER: "number",
  11. OPAREN: "(",
  12. QUOTE: '"',
  13. SYMBOL: "symbol"
  14. };