cardinal-codegen 0.1.1

A code generator written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! The top-level `lib.rs` for the Cardinal code generator.

pub mod entities;
pub mod function;
pub mod instbuilder;
pub mod instruction;
pub mod ir;
pub mod module;

pub use entities::{AbiType, Block, GlobalVariable, Named, NamedProperty, Type, Value, Variable};
pub use function::{Function, FunctionSignature};
pub use module::Module;