Skip to main content

luaur_analysis/methods/
cannot_call_non_function_operator_eq.rs

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