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,
|
|
|
|
};
|