koto_lexer 0.16.1

The lexer used by the Koto programming language
Documentation
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::{
        KotoLexer as Lexer, LexedToken, RawStringDelimiter, StringQuote, StringType, Token,
        is_id_continue, is_id_start,
    },
    span::{Position, Span},
};