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 104e5de commit 09e6cbcCopy full SHA for 09e6cbc
extension/server/src/providers/reference.ts
@@ -25,10 +25,11 @@ export async function referenceProvider(params: ReferenceParams): Promise<Locati
25
26
if (def) {
27
let locations: Location[] = [];
28
- if (Project.isEnabled) {
29
- const procRefs = await getAllProcedureReferences(def);
30
- locations.push(...procRefs);
31
- }
+ // TODO: Currently disabled due to reference bug in getAllProcedureReferences
+ // if (Project.isEnabled) {
+ // const procRefs = await getAllProcedureReferences(def);
+ // locations.push(...procRefs);
32
+ // }
33
34
for (const ref of def.references) {
35
let refDoc = documents.get(ref.uri);
0 commit comments