(key: string, regexp: RegExp | null)
| 841 | export class ContextKeyRegexExpr implements IContextKeyExpression { |
| 842 | |
| 843 | public static create(key: string, regexp: RegExp | null): ContextKeyRegexExpr { |
| 844 | return new ContextKeyRegexExpr(key, regexp); |
| 845 | } |
| 846 | |
| 847 | public readonly type = ContextKeyExprType.Regex; |
| 848 |
nothing calls this directly
no outgoing calls
no test coverage detected