Skip to content

Commit 62cd329

Browse files
committed
fixed walker error. down to 48 failing tests.
1 parent 1c18f42 commit 62cd329

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Rubberduck.Parsing/VBA/RubberduckParserReimpl.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ private void ResolveDeclarations(VBComponent component, IParseTree tree)
264264
declarationsListener.NewDeclaration += (sender, e) => _state.AddDeclaration(e.Declaration);
265265
declarationsListener.CreateModuleDeclarations();
266266
// rewalk parse tree for second declaration level
267-
walker.Walk(declarationsListener, tree);
267+
ParseTreeWalker.Default.Walk(declarationsListener, tree);
268268
} catch (Exception exception)
269269
{
270270
Debug.Print("Exception thrown resolving '{0}' (thread {2}): {1}", component.Name, exception, Thread.CurrentThread.ManagedThreadId);

0 commit comments

Comments
 (0)