heraclitus-compiler 1.7.2

Compiler frontend for developing great programming languages
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Module for compiling your language
//! 
//! This module supplies you with many features, among them - `Compiler`
//! that helps you tokenize your code or even parse it entirely.

mod lexing;
mod compiler;
mod token;
mod parser;
pub mod failing;

pub use lexing::*;
pub use compiler::*;
pub use token::*;
pub use parser::*;