luaur-reduce-cli 0.1.3

Command-line Luau test-case reducer (Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
#[allow(non_camel_case_types)]
pub enum TestResult {
    BugFound, // We encountered the bug we are trying to isolate
    NoBug,    // We did not encounter the bug we are trying to isolate
}

impl TestResult {
    pub const BugFound: Self = Self::BugFound;
    pub const NoBug: Self = Self::NoBug;
}