Searched refs:otherConstraint (Results 1 – 1 of 1) sorted by relevance
62 def isSuperTypeOf(self, otherConstraint): argument63 return self in otherConstraint.getValueMap() or \64 otherConstraint is self or otherConstraint == self65 def isSubTypeOf(self, otherConstraint): argument66 return otherConstraint in self._valueMap or \67 otherConstraint is self or otherConstraint == self