summaryrefslogtreecommitdiff
path: root/src/context.rs
blob: c015c7e8c5c855063fe0e942cff538bc3915d6c9 (plain) (blame)
1
2
3
4
5
6
7
8
use crate::*;


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