1 override of HasSuccessfullyLoaded
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Solution\SolutionState.CompilationTracker.CompilationTrackerState.cs (1)
242
public override bool?
HasSuccessfullyLoaded
{ get; }
6 references to HasSuccessfullyLoaded
Microsoft.CodeAnalysis.Workspaces (6)
Workspace\Solution\SolutionState.CompilationTracker.cs (6)
441
RoslynDebug.Assert(state.
HasSuccessfullyLoaded
.HasValue);
442
return new CompilationInfo(finalCompilation, state.
HasSuccessfullyLoaded
.Value, state.GeneratorInfo);
483
RoslynDebug.Assert(state.
HasSuccessfullyLoaded
.HasValue);
484
return new CompilationInfo(compilation, state.
HasSuccessfullyLoaded
.Value, state.GeneratorInfo);
1032
if (state.
HasSuccessfullyLoaded
.HasValue)
1034
return state.
HasSuccessfullyLoaded
.Value ? SpecializedTasks.True : SpecializedTasks.False;