luaur-require 0.1.2

Require-by-string module resolution for Luau (Rust).
Documentation
1
2
3
4
5
6
7
8
9
use alloc::string::String;
use alloc::vec::Vec;
use luaur_common::records::dense_hash_set::DenseHashSet;

#[derive(Debug, Clone)]
pub struct AliasCycleTracker {
    pub(crate) seen: DenseHashSet<String>,
    pub(crate) ordered: Vec<String>,
}