Skip to main content

luaur_analysis/methods/
instantiate_generics_on_non_function_operator_eq.rs

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