52 references to HasAllInformation
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Extensions\ProtocolConversions.cs (1)
940IsMiscellaneous = project.Solution.WorkspaceKind == WorkspaceKind.MiscellaneousFiles && !project.State.HasAllInformation,
Microsoft.CodeAnalysis.LanguageServer.UnitTests (47)
FileBasedProgramsWorkspaceTests.cs (47)
101Assert.False(document.Project.State.HasAllInformation); 112Assert.True(document.Project.State.HasAllInformation); 161Assert.False(document.Project.State.HasAllInformation); 172Assert.True(document.Project.State.HasAllInformation); 202Assert.True(document.Project.State.HasAllInformation); 253Assert.True(document.Project.State.HasAllInformation); 260Assert.True(document.Project.State.HasAllInformation); 286Assert.True(document.Project.State.HasAllInformation); 350Assert.False(canonicalDocumentTwo.Project.State.HasAllInformation); 449Assert.False(looseDocumentOne.Project.State.HasAllInformation); 460Assert.False(canonicalDocumentOne.Project.State.HasAllInformation); 477Assert.True(canonicalDocumentTwo.Project.State.HasAllInformation); 515Assert.False(looseDocument.Project.State.HasAllInformation); 550Assert.False(looseDocumentOne.Project.State.HasAllInformation); 561Assert.False(canonicalDocumentOne.Project.State.HasAllInformation); 635Assert.True(document.Project.State.HasAllInformation); 644Assert.False(document.Project.State.HasAllInformation); 652Assert.True(document.Project.State.HasAllInformation); 675Assert.True(document.Project.State.HasAllInformation); 684Assert.False(document.Project.State.HasAllInformation); 692Assert.True(document.Project.State.HasAllInformation); 761Assert.False(document.Project.State.HasAllInformation); 771Assert.True(document.Project.State.HasAllInformation); 783Assert.True(document.Project.State.HasAllInformation); 794Assert.True(document.Project.State.HasAllInformation); 826Assert.True(document.Project.State.HasAllInformation); 948Assert.True(document.Project.State.HasAllInformation); 1004Assert.True(document.Project.State.HasAllInformation); 1084Assert.True(document.Project.State.HasAllInformation); 1181Assert.True(document.Project.State.HasAllInformation); 1297Assert.False(document.Project.State.HasAllInformation); 1306Assert.False(document.Project.State.HasAllInformation); // We didn't observe the file system change 1314Assert.True(document.Project.State.HasAllInformation); 1321Assert.True(document.Project.State.HasAllInformation); // We didn't observe the file system change 1329Assert.False(document.Project.State.HasAllInformation); 1357Assert.False(document.Project.State.HasAllInformation); 1387Assert.False(document.Project.State.HasAllInformation); 1420Assert.True(document.Project.State.HasAllInformation); 1427Assert.True(document.Project.State.HasAllInformation); 1435Assert.True(document.Project.State.HasAllInformation); 1442Assert.True(document.Project.State.HasAllInformation); 1450Assert.True(document.Project.State.HasAllInformation); 1479Assert.True(document.Project.State.HasAllInformation); 1514Assert.True(document.Project.State.HasAllInformation); 1548Assert.False(document.Project.State.HasAllInformation); 1572Assert.True(document.Project.State.HasAllInformation); 1605Assert.True(document.Project.State.HasAllInformation);
Microsoft.CodeAnalysis.Workspaces (3)
Workspace\Solution\ProjectState.cs (1)
744=> (hasAllInformation == HasAllInformation) ? this : WithNewerAttributes(Attributes.With(hasAllInformation: hasAllInformation, version: Version.GetNewerVersion()));
Workspace\Solution\SolutionCompilationState.cs (1)
1243: project.HasAllInformation ? SpecializedTasks.True : SpecializedTasks.False;
Workspace\Solution\SolutionCompilationState.RegularCompilationTracker.cs (1)
489var hasSuccessfullyLoaded = this.ProjectState.HasAllInformation &&
Roslyn.VisualStudio.Next.UnitTests (1)
Services\SolutionServiceTests.cs (1)
278Assert.Equal((version % 2) != 0, project.State.HasAllInformation);