pub trait PropertiesComputable {
    // Required method
    fn compute_properties(
        &mut self,
        stack: &Rc<RuntimePropertiesStackFrame>,
        table: &ExpressionTable,
        globals: &Globals
    );
}

Required Methods§

source

fn compute_properties( &mut self, stack: &Rc<RuntimePropertiesStackFrame>, table: &ExpressionTable, globals: &Globals )

Implementors§