(key: string)
| 90 | } |
| 91 | |
| 92 | public static not(key: string): ContextKeyExpression { |
| 93 | return ContextKeyNotExpr.create(key); |
| 94 | } |
| 95 | |
| 96 | public static and(...expr: Array<ContextKeyExpression | undefined | null>): ContextKeyExpression | undefined { |
| 97 | return ContextKeyAndExpr.create(expr); |