cellstate_pipeline/pack/
ast.rs

1//! Pack IR -> CellstateAst
2
3use super::ir::{ast_from_ir, PackError, PackIr};
4use crate::ast::CellstateAst;
5
6pub fn build_ast(ir: &PackIr) -> Result<CellstateAst, PackError> {
7    Ok(ast_from_ir(ir))
8}