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