Skip to main content

luaur_require/records/
alias_cycle_tracker.rs

1use alloc::string::String;
2use alloc::vec::Vec;
3use luaur_common::records::dense_hash_set::DenseHashSet;
4
5#[derive(Debug, Clone)]
6pub struct AliasCycleTracker {
7    pub(crate) seen: DenseHashSet<String>,
8    pub(crate) ordered: Vec<String>,
9}