in client/src/yaml-support/yaml-locator.ts [92:96]
public getYamlDocuments(textDocument: vscode.TextDocument): YamlDocument[] {
const key: string = textDocument.uri.toString();
this.ensureCache(key, textDocument);
return this.cache[key].yamlDocs;
}