(other: ContextKeyExpression)
| 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 == |
nothing calls this directly
no outgoing calls
no test coverage detected