1 instantiation of FinalState
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Solution\SolutionState.CompilationTracker.CompilationTrackerState.cs (1)
303return new FinalState(
14 references to FinalState
Microsoft.CodeAnalysis.Workspaces (14)
Workspace\Solution\SolutionState.CompilationTracker.CompilationTrackerState.cs (6)
98/// <see cref="FinalState" />. 121/// <see langword="null"/> if the state isn't at the point where it would know, and it's necessary to transition to <see cref="FinalState"/> to figure that out. 234/// cref="Project.TryGetCompilation"/> must be from a <see cref="FinalState"/>. This is because <see 235/// cref="FinalState"/> stores extra information in it about that compilation that the <see 254/// cref="Compilation"/>, which in the <see cref="FinalState"/> case will be the compilation before any 288public static FinalState Create(
Workspace\Solution\SolutionState.CompilationTracker.cs (8)
93var unrootedSymbolSet = (state as FinalState)?.UnrootedSymbolSet; 239var finalState = FinalState.Create( 298if (compilationWithoutGeneratedDocuments != null && state is FinalState finalState) 498if (state is AllSyntaxTreesParsedState or FinalState) 946var finalState = FinalState.Create( 1095return state is FinalState finalState ? finalState.GeneratorInfo.Documents.GetState(documentId) : null;