(key: string, value: RegExp)
| 86 | } |
| 87 | |
| 88 | public static regex(key: string, value: RegExp): ContextKeyExpression { |
| 89 | return ContextKeyRegexExpr.create(key, value); |
| 90 | } |
| 91 | |
| 92 | public static not(key: string): ContextKeyExpression { |
| 93 | return ContextKeyNotExpr.create(key); |