heraclitus-compiler 1.8.0

Compiler frontend for developing great programming languages
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Rules for lexing
//! 
//! This module serves an interface objects that can help you create your own material for parsing.
//! Here you can specify how the lexer should tokenize code by using `Rules` struct that is required by compiler

#[macro_use]
mod rules;
mod region;

pub use rules::*;
pub use region::*;