lex-core 0.8.2

Parser library for the lex format
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! StreamMapper implementations for token transformations
//!
//! This module contains concrete implementations of the StreamMapper trait
//! that perform specific transformations on TokenStreams.

pub mod document_start;
pub mod line_token_grouping;
pub mod semantic_indentation;

pub use document_start::DocumentStartMarker;
pub use line_token_grouping::LineTokenGroupingMapper;