luaur_analysis/methods/
cannot_extend_table_operator_eq.rs1use crate::records::cannot_extend_table::CannotExtendTable;
2
3impl CannotExtendTable {
4 #[inline]
5 pub fn operator_eq(&self, rhs: &CannotExtendTable) -> bool {
6 self.table_type == rhs.table_type && self.prop == rhs.prop && self.context == rhs.context
7 }
8}