Parses Python source code into an AlephTree.
Built on top of rustpython-parser.
[dependencies]
ale_python_parser = "0.1"let ast = ale_python_parser::python_parse(source_code);Input:
def add(a, b):
return a + bProduces an AlephTree::LetRec with two arguments and an Add body.
aleph-syntax-tree— AST definitionalephc— uses this parser with--features python_parse