xee-interpreter 0.2.0

Interpreter for XPath and XSLT
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::{function, pattern::ModeLookup};

#[derive(Debug)]
pub struct Declarations {
    pub mode_lookup: ModeLookup<function::InlineFunctionId>,
}

impl Declarations {
    pub(crate) fn new() -> Self {
        Self {
            mode_lookup: ModeLookup::new(),
        }
    }
}