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