2 implementations of TryGetSourceGeneratedDocumentStateForAlreadyGeneratedId
Microsoft.CodeAnalysis.Workspaces (2)
Workspace\Solution\SolutionState.CompilationTracker.cs (1)
1088public SourceGeneratedDocumentState? TryGetSourceGeneratedDocumentStateForAlreadyGeneratedId(DocumentId documentId)
Workspace\Solution\SolutionState.GeneratedFileReplacingCompilationTracker.cs (1)
179public SourceGeneratedDocumentState? TryGetSourceGeneratedDocumentStateForAlreadyGeneratedId(DocumentId documentId)
2 references to TryGetSourceGeneratedDocumentStateForAlreadyGeneratedId
Microsoft.CodeAnalysis.Workspaces (2)
Workspace\Solution\SolutionState.cs (1)
1844return GetCompilationTracker(documentId.ProjectId).TryGetSourceGeneratedDocumentStateForAlreadyGeneratedId(documentId);
Workspace\Solution\SolutionState.GeneratedFileReplacingCompilationTracker.cs (1)
187return UnderlyingTracker.TryGetSourceGeneratedDocumentStateForAlreadyGeneratedId(documentId);