Skip to content

Commit f1ba539

Browse files
committed
Fixed direct access of RubberduckParserState.SetStateAndFireStatChange.
1 parent dd77700 commit f1ba539

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Rubberduck.Parsing/VBA/ParseCoordinator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ private void ExecuteCommonParseActivities(IReadOnlyCollection<QualifiedModuleNam
239239

240240
//Explicitly setting the overall state here guarantees that the handlers attached
241241
//to the state change to ResolvedDeclarations always run, provided there is no error.
242-
State.SetStatusAndFireStateChanged(this, ParserState.ResolvedDeclarations, token);
242+
_parserStateManager.SetStatusAndFireStateChanged(this, ParserState.ResolvedDeclarations, token);
243243

244244
if (token.IsCancellationRequested || State.Status >= ParserState.Error)
245245
{

0 commit comments

Comments
 (0)