Skip to main content

oak_solidity/parser/
mod.rs

1/// Solidity element types.
2pub mod element_type;
3
4pub use element_type::SolidityElementType;
5
6/// Solidity parser.
7pub struct SolidityParser;
8
9impl SolidityParser {
10    /// Create a new Solidity parser.
11    pub fn new() -> Self {
12        Self
13    }
14}