1 implementation of GlobalStateVersion
Microsoft.CodeAnalysis.Features (1)
Diagnostics\IDiagnosticsRefresher.cs (1)
53
public int
GlobalStateVersion
6 references to GlobalStateVersion
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (5)
EditAndContinue\EditAndContinueLanguageServiceTests.cs (5)
132
var observedDiagnosticVersion = diagnosticRefresher.
GlobalStateVersion
;
155
Assert.Equal(++observedDiagnosticVersion, diagnosticRefresher.
GlobalStateVersion
);
227
Assert.Equal(++observedDiagnosticVersion, diagnosticRefresher.
GlobalStateVersion
);
292
Assert.Equal(++observedDiagnosticVersion, diagnosticRefresher.
GlobalStateVersion
);
347
Assert.Equal(++observedDiagnosticVersion, diagnosticRefresher.
GlobalStateVersion
);
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Handler\Diagnostics\AbstractPullDiagnosticHandler.cs (1)
154
var globalStateVersion = _diagnosticRefresher.
GlobalStateVersion
;