Function
_deserializeAndExpression
(serialized: string, strict: boolean)
Source from the content-addressed store, hash-verified
| 131 | } |
| 132 | |
| 133 | private static _deserializeAndExpression(serialized: string, strict: boolean): ContextKeyExpression | undefined { |
| 134 | let pieces = serialized.split('&&'); |
| 135 | return ContextKeyAndExpr.create(pieces.map(p => this._deserializeOne(p, strict))); |
| 136 | } |
| 137 | |
| 138 | private static _deserializeOne(serializedOne: string, strict: boolean): ContextKeyExpression { |
| 139 | serializedOne = serializedOne.trim(); |
Callers
nothing calls this directly
Tested by
no test coverage detected