1use super::{Visitor, ModuleVisitor}; 2use ligen_ir::Function; 3 4/// Function visitor. 5pub type FunctionVisitor = Visitor<ModuleVisitor, Function>;