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