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