Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add operators, keywords and reserved words to CoffeeScript lexer (#1061)
This commit: - adds missing keywords: `until`, `loop`, `do`, `yield` (old ones), `debugger` (an obscure one inhereted from JavaScript), and `await`, `import`, `export` (added in CoffeeScript 2); - adds missing reserved words based on the RESERVED list in CoffeeScript source code (see https://coffeescript.org/annotated-source/lexer.html#constants); and - makes `in` and `of` into operators.
- Loading branch information