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

A code expression. (code within a line)

Required Methods

Writes the expression to the code buffer.

Implementors