1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Contains the lexer used by the Koto language

#![warn(missing_docs)]

mod lexer;
mod span;

pub use crate::{
    lexer::{
        is_id_continue, is_id_start, KotoLexer as Lexer, LexedToken, RawStringDelimiter,
        StringQuote, StringType, Token,
    },
    span::{Position, Span},
};