(serialized: string | null | undefined, strict: boolean = false)
| 118 | } |
| 119 | |
| 120 | public static deserialize(serialized: string | null | undefined, strict: boolean = false): ContextKeyExpression | undefined { |
| 121 | if (!serialized) { |
| 122 | return undefined; |
| 123 | } |
| 124 | |
| 125 | return this._deserializeOrExpression(serialized, strict); |
| 126 | } |
| 127 | |
| 128 | private static _deserializeOrExpression(serialized: string, strict: boolean): ContextKeyExpression | undefined { |
| 129 | let pieces = serialized.split('||'); |
nothing calls this directly
no outgoing calls
no test coverage detected