Skip to main content

luaur_analysis/methods/
join_join.rs

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