zamm_yang 0.0.9

A basic, experimental code generator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// Generate code for attribute concepts.
pub mod attribute;
/// Config values at the time of attribute string generation.
mod attribute_format_config;
/// Config values at the time of string generation.
pub mod format_config;
/// Intermediate code fragments produced during code generation.
pub mod fragments;
/// Import-related code generation.
pub mod imports;
mod string_concept;
/// Generate code for generic Tao concepts.
pub mod tao;

pub use attribute_format_config::{AttributeFormatConfig, OWNER_FORM_KEY, VALUE_FORM_KEY};
pub use format_config::FormatConfig;
pub use string_concept::code_string_concept;