Skip to main content

luaur_analysis/methods/
find_refinement_blockers_find_refinement_blockers.rs

1use crate::records::find_refinement_blockers::FindRefinementBlockers;
2use crate::records::type_once_visitor::TypeOnceVisitor;
3use luaur_common::records::dense_hash_set::DenseHashSet;
4
5impl FindRefinementBlockers {
6    pub fn find_refinement_blockers() -> Self {
7        FindRefinementBlockers {
8            base: TypeOnceVisitor::new("FindRefinementBlockers".to_string(), true),
9            found: DenseHashSet::new(core::ptr::null_mut()),
10        }
11    }
12}