(key: string, value: any)
| 82 | } |
| 83 | |
| 84 | public static notEquals(key: string, value: any): ContextKeyExpression { |
| 85 | return ContextKeyNotEqualsExpr.create(key, value); |
| 86 | } |
| 87 | |
| 88 | public static regex(key: string, value: RegExp): ContextKeyExpression { |
| 89 | return ContextKeyRegexExpr.create(key, value); |