1
2
3
4
5
6
7
use crate::CodeBuffer;

/// Code within a line.
pub trait Expression {
    /// Writes the expression to the code buffer.
    fn write(&self, b: &mut CodeBuffer);
}