We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cd63e9 commit 6959715Copy full SHA for 6959715
extension/server/src/connection.ts
@@ -138,6 +138,10 @@ export function handleClientRequests() {
138
connection.onRequest(`clearTableCache`, () => {
139
parser.clearTableCache();
140
});
141
+
142
+ connection.onRequest(`getCache`, (uri: string) => {
143
+ return parser.getParsedCache(uri);
144
+ });
145
}
146
147
export interface BindingDirectory {
extension/server/src/providers/project/index.ts
@@ -51,10 +51,6 @@ export async function initialise() {
51
52
})
53
54
-
55
- connection.onRequest(`getCache`, (uri: string) => {
56
- return parser.getParsedCache(uri);
57
- });
58
59
60
async function loadWorkspace() {
0 commit comments