xee_xpath_compiler/
lib.rs

1mod ast_ir;
2mod compile;
3
4mod span;
5
6pub use xee_xpath_ast::ast::Name;
7pub use xee_xpath_ast::{Namespaces, VariableNames};
8
9pub use xee_interpreter::interpreter::Runnable;
10pub use xee_interpreter::{atomic, context, error, interpreter, occurrence, sequence, string, xml};
11
12pub use crate::ast_ir::IrConverter;
13pub use crate::compile::{compile, parse};