MCPcopy Create free account
hub / github.com/Wscats/vscode-explore / equals

Method equals

contextKeyExpr/src/contextkey.ts:483–488  ·  view source on GitHub ↗
(other: ContextKeyExpression)

Source from the content-addressed store, hash-verified

481 }
482
483 public equals(other: ContextKeyExpression): boolean {
484 if (other.type === this.type) {
485 return (this.key === other.key && this.value === other.value);
486 }
487 return false;
488 }
489
490 public evaluate(context: IContext): boolean {
491 // Intentional !=

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected