pub trait CorePass<T: ConvertInfo> {
Show 22 methods
// Provided methods
fn enter_root(&mut self, _: &mut IRRoot<T>) { ... }
fn exit_root(&mut self, _: &mut IRRoot<T>) { ... }
fn enter_text(&mut self, _: &mut TextIR<T>) { ... }
fn exit_text(&mut self, _: &mut TextIR<T>) { ... }
fn enter_if(&mut self, _: &mut IfNodeIR<T>) { ... }
fn exit_if(&mut self, _: &mut IfNodeIR<T>) { ... }
fn enter_for(&mut self, _: &mut ForNodeIR<T>) { ... }
fn exit_for(&mut self, _: &mut ForNodeIR<T>) { ... }
fn enter_vnode(&mut self, _: &mut VNodeIR<T>) { ... }
fn exit_vnode(&mut self, _: &mut VNodeIR<T>) { ... }
fn enter_slot_outlet(&mut self, _: &mut RenderSlotIR<T>) { ... }
fn exit_slot_outlet(&mut self, _: &mut RenderSlotIR<T>) { ... }
fn enter_v_slot(&mut self, _: &mut VSlotIR<T>) { ... }
fn exit_v_slot(&mut self, _: &mut VSlotIR<T>) { ... }
fn enter_slot_fn(&mut self, _: &mut Slot<T>) { ... }
fn exit_slot_fn(&mut self, _: &mut Slot<T>) { ... }
fn enter_js_expr(&mut self, _: &mut T::JsExpression) { ... }
fn exit_js_expr(&mut self, _: &mut T::JsExpression) { ... }
fn enter_fn_param(&mut self, _: &mut T::JsExpression) { ... }
fn exit_fn_param(&mut self, _: &mut T::JsExpression) { ... }
fn enter_comment(&mut self, _: &mut T::CommentType) { ... }
fn exit_comment(&mut self, _: &mut T::CommentType) { ... }
}
Provided Methods§
fn enter_root(&mut self, _: &mut IRRoot<T>)
fn exit_root(&mut self, _: &mut IRRoot<T>)
fn enter_text(&mut self, _: &mut TextIR<T>)
fn exit_text(&mut self, _: &mut TextIR<T>)
fn enter_if(&mut self, _: &mut IfNodeIR<T>)
fn exit_if(&mut self, _: &mut IfNodeIR<T>)
fn enter_for(&mut self, _: &mut ForNodeIR<T>)
fn exit_for(&mut self, _: &mut ForNodeIR<T>)
fn enter_vnode(&mut self, _: &mut VNodeIR<T>)
fn exit_vnode(&mut self, _: &mut VNodeIR<T>)
fn enter_slot_outlet(&mut self, _: &mut RenderSlotIR<T>)
fn exit_slot_outlet(&mut self, _: &mut RenderSlotIR<T>)
fn enter_v_slot(&mut self, _: &mut VSlotIR<T>)
fn exit_v_slot(&mut self, _: &mut VSlotIR<T>)
fn enter_slot_fn(&mut self, _: &mut Slot<T>)
fn exit_slot_fn(&mut self, _: &mut Slot<T>)
fn enter_js_expr(&mut self, _: &mut T::JsExpression)
fn exit_js_expr(&mut self, _: &mut T::JsExpression)
Sourcefn enter_fn_param(&mut self, _: &mut T::JsExpression)
fn enter_fn_param(&mut self, _: &mut T::JsExpression)
only v-for or slot fn
Sourcefn exit_fn_param(&mut self, _: &mut T::JsExpression)
fn exit_fn_param(&mut self, _: &mut T::JsExpression)
only v-for or slot fn