oak-smalltalk 0.0.9

High-performance incremental Smalltalk parser for the oak ecosystem with flexible configuration.
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod token_type;

pub use token_type::SmalltalkTokenType;

/// Smalltalk lexer.
pub struct SmalltalkLexer;

impl SmalltalkLexer {
    /// Create a new Smalltalk lexer.
    pub fn new() -> Self {
        Self
    }
}