luaur_analysis/methods/missing_properties_operator_eq.rs
1use crate::records::missing_properties::MissingProperties;
2
3impl MissingProperties {
4 #[inline]
5 pub fn operator_eq(&self, rhs: &MissingProperties) -> bool {
6 self.super_type == rhs.super_type
7 && self.sub_type == rhs.sub_type
8 && self.properties == rhs.properties
9 && self.context == rhs.context
10 }
11}