use crate::*;


/// Source context for a token.
pub struct Context<'a> {
    pub source_code: &'a str,
    pub source: &'a SourceSpan,
}