slr_parser 0.0.22

A simple configuration format. This crate contains the parser, see the slr_config crate for a more user-friendly API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) 2014 by SiegeLord
//
// All rights reserved. Distributed under LGPL 3.0. For full terms see the file LICENSE.

pub use lexer::*;
pub use parser::*;
pub use printer::*;
pub use visitor::*;

mod lexer;
mod parser;
mod printer;
mod visitor;