use std::ops::Range;
#[derive(Debug)]
pub struct ParserError {
pub byte_range: Range<usize>,
pub ty: ParserErrorVariant,
}
#[derive(Debug, Clone, Copy)]
pub enum ParserErrorVariant {
Expected(&'static str),
UnterminatedMultilineComment,
UnterminatedStringLiteral,
}