Function
_deserializeOrExpression
(serialized: string, strict: boolean)
Source from the content-addressed store, hash-verified
| 126 | } |
| 127 | |
| 128 | private static _deserializeOrExpression(serialized: string, strict: boolean): ContextKeyExpression | undefined { |
| 129 | let pieces = serialized.split('||'); |
| 130 | return ContextKeyOrExpr.create(pieces.map(p => this._deserializeAndExpression(p, strict))); |
| 131 | } |
| 132 | |
| 133 | private static _deserializeAndExpression(serialized: string, strict: boolean): ContextKeyExpression | undefined { |
| 134 | let pieces = serialized.split('&&'); |
Callers
nothing calls this directly
Tested by
no test coverage detected