zingen/codegen/
mod.rs

1//! Code generators
2//!
3//! - CONSTRUCTOR
4//! - DISPATCHER
5//! - FUNCTION
6//! - CODE
7
8mod code;
9mod constructor;
10mod dispatcher;
11mod function;
12
13pub use self::{
14    code::{Code, ExtFunc},
15    constructor::{Constructor, InitStorage},
16    dispatcher::Dispatcher,
17    function::Function,
18};