(private readonly key: string, private readonly value: any)
| 663 | public readonly type = ContextKeyExprType.Less; |
| 664 | |
| 665 | private constructor(private readonly key: string, private readonly value: any) { |
| 666 | } |
| 667 | |
| 668 | public cmp(other: ContextKeyExpression): number { |
| 669 | if (other.type !== this.type) { |
nothing calls this directly
no outgoing calls
no test coverage detected