Skip to main content

luaur_analysis/methods/
function_requires_self_operator_eq.rs

1use crate::records::function_requires_self::FunctionRequiresSelf;
2
3impl FunctionRequiresSelf {
4    #[inline]
5    pub fn operator_eq(&self, _other: &FunctionRequiresSelf) -> bool {
6        true
7    }
8}