xrcf 0.1.0

A compiler framework to enable the rapid development of programming language compilers
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod parser;
mod scanner;
mod token;

pub use parser::BuiltinParse;
pub use parser::Parse;
pub use parser::Parser;
pub use token::TokenKind;

trait NodeWithParent {}