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 ad75cc2 commit 1ec9482Copy full SHA for 1ec9482
Rubberduck.Parsing/VBA/RubberduckParser.cs
@@ -319,6 +319,11 @@ private void ParseAll(CancellationTokenSource token)
319
320
private Task[] ResolveReferencesAsync(CancellationToken token)
321
{
322
+ foreach (var kvp in State.ParseTrees)
323
+ {
324
+ State.SetModuleState(kvp.Key.Component, ParserState.ResolvingReferences);
325
+ }
326
+
327
var finder = new DeclarationFinder(State.AllDeclarations, State.AllComments, State.AllAnnotations);
328
var passes = new List<ICompilationPass>
329
0 commit comments