(private readonly key: string, private readonly regexp: RegExp | null)
| 847 | public readonly type = ContextKeyExprType.Regex; |
| 848 | |
| 849 | private constructor(private readonly key: string, private readonly regexp: RegExp | null) { |
| 850 | // |
| 851 | } |
| 852 | |
| 853 | public cmp(other: ContextKeyExpression): number { |
| 854 | if (other.type !== this.type) { |
nothing calls this directly
no outgoing calls
no test coverage detected