(other: ContextKeyExpression)
| 344 | } |
| 345 | |
| 346 | public equals(other: ContextKeyExpression): boolean { |
| 347 | if (other.type === this.type) { |
| 348 | return (this.key === other.key); |
| 349 | } |
| 350 | return false; |
| 351 | } |
| 352 | |
| 353 | public evaluate(context: IContext): boolean { |
| 354 | return (!!context.getValue(this.key)); |
nothing calls this directly
no outgoing calls
no test coverage detected