Skip to main content

luaur_analysis/enums/
interesting_edge_case.rs

1#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2#[allow(non_camel_case_types)]
3pub enum InterestingEdgeCase {
4    None,
5    MetatableCall,
6    Intersection,
7}
8
9impl Default for InterestingEdgeCase {
10    fn default() -> Self {
11        Self::None
12    }
13}