oak-smalltalk 0.0.8

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 element_type;

pub use element_type::SmalltalkElementType;

/// Smalltalk parser.
pub struct SmalltalkParser;

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