adaparser 0.1.2

Aleph Parser for Ada : generate Aleph Syntax Tree.
Documentation

adaparser

Parses Ada source code into an AlephTree. Built with LALRPOP.

Installation

[dependencies]
adaparser = "0.1"

Usage

let ast = adaparser::parse(source_code);

Example

Input:

X : Integer := 42;

Produces an AlephTree::Let binding with an Int value.

Related