Skip to main content

luaur_analysis/methods/
sym_def_operator_eq.rs

1use crate::records::sym_def::SymDef;
2
3impl SymDef {
4    pub fn operator_eq(&self, other: &SymDef) -> bool {
5        self.sym.operator_eq_symbol(&other.sym) && self.version == other.version
6    }
7}