Skip to main content

luaur_analysis/methods/
not_a_table_operator_eq.rs

1use crate::records::not_a_table::NotATable;
2
3impl NotATable {
4    #[inline]
5    pub fn operator_eq(&self, rhs: &NotATable) -> bool {
6        self.ty == rhs.ty
7    }
8}