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
fn write(&self, b: &mut CodeBuffer, level: usize)
fn write(&self, b: &mut CodeBuffer, level: usize)
Writes the statement to the code buffer at the indent level.