#![forbid(unsafe_code)]#![cfg_attr(not(test),deny(clippy::unwrap_used, clippy::expect_used))]//! AST data structures for Rex.
//!//! This crate is intentionally “dumb data” first: keep it easy to read, print,
//! and transform. Anything with complicated control flow generally belongs in a
//! later phase (parser, type checker, engine).
pubmodexpr;pubmodid;pubmodmacros;