Skip to content

Commit 923ecfa

Browse files
authored
make debugging easier to inspect local var value (#12358)
1 parent db61a69 commit 923ecfa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Extension/src/LanguageServer/extension.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1376,5 +1376,6 @@ export async function preReleaseCheck(): Promise<void> {
13761376
}
13771377

13781378
export async function getIncludes(maxDepth: number): Promise<any> {
1379-
return clients.ActiveClient.getIncludes(maxDepth);
1379+
const includes = await clients.ActiveClient.getIncludes(maxDepth);
1380+
return includes;
13801381
}

0 commit comments

Comments
 (0)