oak-solidity 0.0.11

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

pub use token_type::SolidityTokenType;

/// Solidity lexer.
pub struct SolidityLexer;

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