zerodds-idl 1.0.0-rc.1

OMG IDL 4.2 (ISO/IEC 19516) Parser + AST + Semantik-Modell für ZeroDDS — Lexer, Grammar-Engine, CST→AST-Builder, Spec-Validators, Annotations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: Apache-2.0
// Copyright 2026 ZeroDDS Contributors
//! Concrete Syntax Tree (CST) — untyped Baum-Repraesentation des Parse-
//! Ergebnisses.
//!
//! Datentypen leben in [`node`]. Die Konstruktion eines CST aus einem
//! Recognizer-Output (ParseForest → CST) folgt in Task 2.6.
//!
//! Siehe RFC 0001 §4.1 und §5.4.

pub mod build;
pub mod node;
pub mod walk;

pub use build::build_cst;
pub use node::{CstKind, CstNode};