heraclitus_compiler/compiling_rules/
mod.rs

1//! Rules for lexing
2//! 
3//! This module serves an interface objects that can help you create your own material for parsing.
4//! Here you can specify how the lexer should tokenize code by using `Rules` struct that is required by compiler
5
6#[macro_use]
7mod rules;
8mod region;
9
10pub use rules::*;
11pub use region::*;