pub trait Statement {
    fn write(&self, b: &mut CodeBuffer, level: usize);
}
Expand description

A code statement. (code that spans one or more lines)

Required Methods

Writes the statement to the code buffer at the indent level.

Implementors