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