lex-core 0.8.2

Parser library for the lex format
Documentation
1
2
3
4
5
6
7
8
9
10
//! Detokenizer format module declaration
//!
//! Unlike other formatters which work on AST Document objects,
//! the detokenizer operates at the token level, converting token
//! streams back to source text.

#[allow(clippy::module_inception)]
pub mod detokenizer;

pub use detokenizer::{detokenize, ToLexString};