(key: string, value: any)
| 114 | } |
| 115 | |
| 116 | public static less(key: string, value: any): ContextKeyExpression { |
| 117 | return ContextKeyLessExpr.create(key, value); |
| 118 | } |
| 119 | |
| 120 | public static deserialize(serialized: string | null | undefined, strict: boolean = false): ContextKeyExpression | undefined { |
| 121 | if (!serialized) { |