lopal/crates/lopal_core/src/lib.rs

14 lines
347 B
Rust
Raw Normal View History

2025-05-13 09:49:20 +02:00
//! Heavily in-dev parser library.
//!
//! Inspired by rust-analyzer.
//!
//! See [_Modern Parser Generator_](https://matklad.github.io/2018/06/06/modern-parser-generator.html) by Matklad
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,
};