3 instantiations of DebugSourceInfo
Microsoft.CodeAnalysis (3)
EmbeddedText.cs (1)
345return new Cci.DebugSourceInfo(Checksum, ChecksumAlgorithm, Blob);
PEWriter\DebugSourceDocument.cs (1)
50_sourceInfo = Task.FromResult(new DebugSourceInfo(checksum, algorithm));
Syntax\SyntaxTree.cs (1)
384return new Cci.DebugSourceInfo(_lazyChecksum, _lazyHashAlgorithm);
10 references to DebugSourceInfo
Microsoft.CodeAnalysis (9)
EmbeddedText.cs (1)
343internal Cci.DebugSourceInfo GetDebugSourceInfo()
NativePdbWriter\PdbWriter.cs (1)
607DebugSourceInfo info = document.GetSourceInfo();
PEWriter\DebugSourceDocument.cs (4)
24private readonly Task<DebugSourceInfo>? _sourceInfo; 37public DebugSourceDocument(string location, Guid language, Func<DebugSourceInfo> sourceInfo) 73public DebugSourceInfo GetSourceInfo() 75return _sourceInfo?.Result ?? default(DebugSourceInfo);
PEWriter\MetadataWriter.DynamicAnalysis.cs (1)
213var sourceInfo = document.GetSourceInfo();
PEWriter\MetadataWriter.PortablePdb.cs (1)
756DebugSourceInfo info = document.GetSourceInfo();
Syntax\SyntaxTree.cs (1)
370internal Cci.DebugSourceInfo GetDebugSourceInfo()
Microsoft.CodeAnalysis.CSharp (1)
Compilation\CSharpCompilation.cs (1)
3808var sourceInfo = existingDoc.GetSourceInfo();