xee-xpath-compiler 0.1.5

XPath 3.1 compiler of AST to Xee IR
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod ast_ir;
mod compile;

mod span;

pub use xee_xpath_ast::ast::Name;
pub use xee_xpath_ast::{Namespaces, VariableNames};

pub use xee_interpreter::interpreter::Runnable;
pub use xee_interpreter::{atomic, context, error, interpreter, occurrence, sequence, string, xml};

pub use crate::ast_ir::IrConverter;
pub use crate::compile::{compile, parse};