aleparser
Parses Aleph source code into an AlephTree.
Built with LALRPOP.
Installation
[]
= "0.1"
Usage
let ast = parse;
Example
Input:
let x = 42
x + 1
Produces an AlephTree::Stmts containing a Let binding followed by an Add expression.
Related
aleph-syntax-tree— AST definitionalephc— uses this parser with--features ale_parse