lopal/crates/lopal_core/src/lib.rs

9 lines
159 B
Rust
Raw Normal View History

2025-05-12 15:50:27 +02:00
#![feature(iter_collect_into)]
pub mod parser;
pub use parser::{
error::SyntaxError,
marker::{CompletedMarker, Marker},
Parser, SyntaxElement,
};