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