xee-interpreter 0.2.0

Interpreter for XPath and XSLT
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// The core of the interpreter: bytecodes and a way to run them. Bytecodes
/// are contained in functions, which together are composed into a program.
pub mod instruction;
mod interpret;
mod program;
mod runnable;
mod state;

pub use interpret::Interpreter;
pub use program::{FunctionInfo, Program};
pub use runnable::Runnable;