(key: string)
| 74 | } |
| 75 | |
| 76 | public static has(key: string): ContextKeyExpression { |
| 77 | return ContextKeyDefinedExpr.create(key); |
| 78 | } |
| 79 | |
| 80 | public static equals(key: string, value: any): ContextKeyExpression { |
| 81 | return ContextKeyEqualsExpr.create(key, value); |