Skip to main content

luaur_analysis/enums/
context_error_alt_b.rs

1#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2#[allow(non_camel_case_types)]
3pub enum Context {
4    Binding,
5    Type,
6}
7
8impl Context {
9    pub const Binding: Self = Self::Binding;
10    pub const Type: Self = Self::Type;
11}