MCPcopy Create free account
hub / github.com/Wscats/vscode-explore / _deserializeAndExpression

Function _deserializeAndExpression

contextKeyExpr/src/contextkey.ts:133–136  ·  view source on GitHub ↗
(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

Calls 2

mapMethod · 0.65
createMethod · 0.45

Tested by

no test coverage detected