Orrery Parser
Parser for the Orrery diagram language. This crate provides the complete parsing pipeline from source text to semantic diagram representation.
Overview
The parser processes Orrery source code through a multi-stage pipeline:
- Tokenize — Convert source text to tokens
- Parse — Build AST from tokens
- Desugar — Normalize syntax sugar
- Validate — Check semantic validity
- Elaborate — Transform to the semantic model (
orrery_core::semantic::Diagram)
Quick Example
use ;
Documentation
License
Licensed under either of Apache License 2.0 or MIT license at your option.