Skip to main content

luaur_analysis/methods/
ambiguous_function_call_operator_eq.rs

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