(key: string, value: any)
| 78 | } |
| 79 | |
| 80 | public static equals(key: string, value: any): ContextKeyExpression { |
| 81 | return ContextKeyEqualsExpr.create(key, value); |
| 82 | } |
| 83 | |
| 84 | public static notEquals(key: string, value: any): ContextKeyExpression { |
| 85 | return ContextKeyNotEqualsExpr.create(key, value); |