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

Method equals

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

Source from the content-addressed store, hash-verified

753 }
754
755 public equals(other: ContextKeyExpression): boolean {
756 if (other.type === this.type) {
757 return (this.key === other.key && this.value === other.value);
758 }
759 return false;
760 }
761
762 public evaluate(context: IContext): boolean {
763 // Intentional ==

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected