in src/ssmLanguageService.ts [127:136]
async doResolve(item: JsonLS.CompletionItem): Promise<JsonLS.CompletionItem> {
const jsonResult = await this.jsonLanguageService.doResolve(item);
if (!jsonResult.label && jsonResult !== item) {
return jsonResult;
}
const yamlResult = await this.yamlLanguageService.doResolve(item);
return yamlResult;
}