Lines Matching full:other
29 def match(self, other) -> bool: argument
31 same value in `other`, but not necessarily vice versa.
33 if not other or not isinstance(other, SourceLocation):
37 other.path is None or (PurePath(self.path) != PurePath(other.path))
41 if self.lineno and (self.lineno != other.lineno):
44 if self.column and (self.column != other.column):
74 def match(self, other) -> bool: argument
76 same value in `other`, but not necessarily vice versa.
78 if not other or not isinstance(other, StackFrame):
81 if self.location and not self.location.match(other.location):
90 getattr(other.watches[name], attr, None)
95 if other.watches[name].value != self.watches[name]:
115 def match(self, other) -> bool: argument
117 same value in `other`, but not necessarily vice versa.
119 if not other or not isinstance(other, ProgramState):
125 if not frame.match(other.frames[idx]):