Skip to main content

hypen_engine/ir/
mod.rs

1pub mod component;
2pub mod expand;
3pub mod node;
4
5#[cfg(test)]
6mod children_slots_test;
7
8pub use component::{Component, ComponentRegistry, ComponentResolver, ResolvedComponent};
9pub use expand::{ast_to_ir, ast_to_ir_node};
10pub use node::{ConditionalBranch, Element, IRNode, NodeId, Props, Value};