pliparser 0.1.2

Aleph Parser for PL/I : generate Aleph Syntax Tree.
Documentation

pliparser

Parses PL/I source code into an AlephTree. Built with LALRPOP.

Installation

[dependencies]
pliparser = "0.1"

Usage

let ast = pliparser::parse(source_code);

Example

Input:

DCL X FIXED BIN(31) INIT(42);

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

Related