Lines Matching refs:other
119 public function equals(object $other) : bool argument
121 return $other instanceof self;
282 public function equals(object $other) : bool argument
284 if ($this === $other) {
288 if (!$other instanceof self) {
292 return $this->fullCtx === $other->fullCtx
293 && $this->uniqueAlt === $other->uniqueAlt
294 && $this->hasSemanticContext === $other->hasSemanticContext
295 && $this->dipsIntoOuterContext === $other->dipsIntoOuterContext
296 && Equality::equals($this->configs, $other->configs)
297 && Equality::equals($this->conflictingAlts, $other->conflictingAlts);