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

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