xee_interpreter/declaration/
mod.rs

1/// XSLT has a number of things that can be declared globally, such
2/// as global variables, parameters, functions, and templates. This
3/// contains the runtime information to execute XSLT.
4mod decl;
5mod globalvar;
6
7pub use decl::Declarations;