1/// A syntax error, carried on a side channel keyed by byte range. 2#[derive(Debug, Clone, PartialEq, Eq)] 3pub struct SyntaxError { 4 pub message: String, 5 pub start: usize, 6 pub end: usize, 7}