syntax_parser_generator/readers/
mod.rs

1//! Streams of input text to be parsed.
2//!
3//! The first stage of the parsing pipeline - lexical analysis - requires a unique API to access the
4//! input text. This module defines this API in the form of the [Reader] trait. It also contains
5//! several implementations of the trait, which wrap standard sources of data with this required
6//! API.
7
8pub use address_based::{AddressBasedReader, AddressSpace};
9pub use byte_array_reader::ByteArrayReader;
10pub use reader::Reader;
11
12mod reader;
13mod address_based;
14mod byte_array_reader;