Skip to main content

oak_smalltalk/parser/
mod.rs

1pub mod element_type;
2
3pub use element_type::SmalltalkElementType;
4
5/// Smalltalk parser.
6pub struct SmalltalkParser;
7
8impl SmalltalkParser {
9    /// Create a new Smalltalk parser.
10    pub fn new() -> Self {
11        Self
12    }
13}