pub trait Expandable {
// Required method
fn expand(&self, env: &Env) -> Result<String, AssemblerError>;
}
Expand description
To be implemented for each element that can be expended based on some patterns (i.e. macros, structs)
pub trait Expandable {
// Required method
fn expand(&self, env: &Env) -> Result<String, AssemblerError>;
}
To be implemented for each element that can be expended based on some patterns (i.e. macros, structs)