1 2 3 4 5 6 7 8 9 10 11
use crate::records::join::Join; use crate::type_aliases::def_id_control_flow_graph::DefId; impl Join { pub fn join(definition: DefId) -> Self { Self { definition, operands: alloc::vec::Vec::new(), } } }