heraclitus-compiler 1.3.2

Compiler frontend for developing great programming languages
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod syntax_module;
mod pattern;
mod preset;
mod metadata;

pub use syntax_module::*;
pub use pattern::*;
pub use metadata::*;
pub mod patterns {
    //! Utility functions that help you parse tokens
    //! 
    //! Functions in this module can help you handle tokens in the parsing phase.
    pub use super::pattern::*;
    pub use super::preset::*;
}