1 2 3 4 5 6 7
use crate::CodeBuffer;
/// Represents a code expression.
pub trait Expression {
/// Writes the expression to the code buffer.
fn write(&self, b: &mut CodeBuffer);
}
1 2 3 4 5 6 7
use crate::CodeBuffer;
/// Represents a code expression.
pub trait Expression {
/// Writes the expression to the code buffer.
fn write(&self, b: &mut CodeBuffer);
}