Skip to content

Commit

Permalink
Initial cut of the ES2015 parser
Browse files Browse the repository at this point in the history
- This is basically identical to the ES5 parser at this point, with the
  references modify to reflect the ES2015 intent that this parser will
  handle.
  • Loading branch information
metatoaster committed Jul 27, 2019
1 parent c304f00 commit 58f26eb
Show file tree
Hide file tree
Showing 4 changed files with 1,529 additions and 2 deletions.
4 changes: 4 additions & 0 deletions src/calmjs/parse/asttypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ class ES5Program(Program):
pass


class ES2015Program(Program):
pass


class Block(Node):
pass

Expand Down
Loading

0 comments on commit 58f26eb

Please sign in to comment.