(actual: ContextKeyRegexExpr)
| 908 | export class ContextKeyNotRegexExpr implements IContextKeyExpression { |
| 909 | |
| 910 | public static create(actual: ContextKeyRegexExpr): ContextKeyExpression { |
| 911 | return new ContextKeyNotRegexExpr(actual); |
| 912 | } |
| 913 | |
| 914 | public readonly type = ContextKeyExprType.NotRegex; |
| 915 |
nothing calls this directly
no outgoing calls
no test coverage detected