vize_relief 0.215.0

Relief - The sculptured AST surface for Vize Vue templates
Documentation
//! Relief IR node types.
//!
//! This module defines the lowered relief IR that both template and JSX lowering
//! target. All nodes are allocated in a bumpalo arena for efficient memory
//! management and zero-copy transfer to JavaScript.

pub mod codegen;
pub mod control_flow;
pub mod core;
pub mod elements;
pub mod expressions;
pub mod nodes;

#[cfg(test)]
mod tests;

pub use codegen::*;
pub use control_flow::*;
pub use core::*;
pub use elements::*;
pub use expressions::*;
pub use nodes::*;