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

Method equals

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

Source from the content-addressed store, hash-verified

685 }
686
687 public equals(other: ContextKeyExpression): boolean {
688 if (other.type === this.type) {
689 return (this.key === other.key && this.value === other.value);
690 }
691 return false;
692 }
693
694 public evaluate(context: IContext): boolean {
695 // Intentional ==

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected