test program

This commit is contained in:
nora 2021-10-07 20:39:31 +02:00
parent 1ed076a5d3
commit bea961bbbd
4 changed files with 28 additions and 3 deletions

View file

@ -20,7 +20,7 @@ impl Span {
#[derive(Debug, Clone)]
pub struct Token<'code> {
span: Span,
kind: TokenType<'code>,
pub(crate) kind: TokenType<'code>,
}
impl<'code> Token<'code> {