(private readonly key: string, private readonly value: any)
| 388 | public readonly type = ContextKeyExprType.Equals; |
| 389 | |
| 390 | private constructor(private readonly key: string, private readonly value: any) { |
| 391 | } |
| 392 | |
| 393 | public cmp(other: ContextKeyExpression): number { |
| 394 | if (other.type !== this.type) { |
nothing calls this directly
no outgoing calls
no test coverage detected