sunjay / brain

A high level programming language that compiles into the brainfuck esoteric programming language
MIT License
170 stars 12 forks source link

Parser #34

Closed sunjay closed 7 years ago

sunjay commented 7 years ago

This new parser using pest is the completed work of the WIP from before. It now successfully converts the entirety of the syntax that we currently support into a reasonable AST format. Though it may not look like it, this is a radically simplified grammar with a lot of the features that weren't implemented or weren't being used removed completely. Any features that aren't planned in the short term are not included.

The parser even has tests now!