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