oxyl_parser/lib.rs
1// oxyl-parser
2//
3// Builds a Document of Nodes from the lexers token stream
4//
5// AST types are in ast.rs btw - the parser proper
6// ( paser, parseresult, the recusrive descent over the token stream etc)
7// all lives in parser.rs this file is just stitching all that together
8// because i hate massive, long files of code so much
9
10
11mod ast;
12mod parser;
13
14pub use ast::{Arg, Document, Node};
15pub use parser::{ParseResult, Parser};