cpclib_asm::assembler

Trait Visited

Source
pub trait Visited {
    // Required method
    fn visited(&self, env: &mut Env) -> Result<(), AssemblerError>;
}
Expand description

Trait to implement for each type of token. it allows to drive the appropriate data vonversion

Required Methods§

Source

fn visited(&self, env: &mut Env) -> Result<(), AssemblerError>

Make all the necessary for the given token

Implementors§