usecrate::common::*;/// A line fragment consisting either of…
#[derive(PartialEq, Debug)]pub(crate)enumFragment<'src> {/// …raw text…
Text { token:Token<'src>},/// …an interpolation containing `expression`.
Interpolation { expression:Expression<'src>},}