iowo/crates/pawarser/src/lib.rs

9 lines
159 B
Rust
Raw Normal View History

#![feature(iter_collect_into)]
2024-10-13 16:47:53 +02:00
pub mod parser;
2024-10-18 14:05:27 +02:00
pub use parser::{
error::SyntaxError,
marker::{CompletedMarker, Marker},
Parser, SyntaxElement,
};