oxilean-parse 0.1.2

OxiLean parser - Concrete syntax to abstract syntax
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Source mapping for macro-expanded and generated code.
//!
//! This module provides a [`SourceMap`] that tracks the origin of every byte
//! of source text, including code produced by macro expansions or code
//! generators.  It can translate between byte offsets and line/column
//! positions and can walk back through the chain of macro expansions to find
//! the original user-written source location.

pub mod functions;
pub mod types;

pub use functions::*;
pub use types::*;