Skip to main content

oak_solidity/lexer/
mod.rs

1/// Solidity token types.
2pub mod token_type;
3
4pub use token_type::SolidityTokenType;
5
6/// Solidity lexer.
7pub struct SolidityLexer;
8
9impl SolidityLexer {
10    /// Create a new Solidity lexer.
11    pub fn new() -> Self {
12        Self
13    }
14}