13 references to PortableCustomDebugInfoKinds
Microsoft.CodeAnalysis.Features (13)
EditAndContinue\EditAndContinueDebugInfoReader.cs (3)
141
compressedSlotMap: GetCdiBytes(methodHandle,
PortableCustomDebugInfoKinds
.EncLocalSlotMap),
142
compressedLambdaMap: GetCdiBytes(methodHandle,
PortableCustomDebugInfoKinds
.EncLambdaAndClosureMap),
143
compressedStateMachineStateMap: GetCdiBytes(methodHandle,
PortableCustomDebugInfoKinds
.EncStateMachineStateMap));
PdbSourceDocument\DocumentDebugInfoReader.cs (2)
70
if (!_pdbReader.TryGetCustomDebugInformation(EntityHandle.ModuleDefinition,
PortableCustomDebugInfoKinds
.SourceLink, out var cdi) || cdi.Value.IsNil)
82
=> _pdbReader.TryGetCustomDebugInformation(handle,
PortableCustomDebugInfoKinds
.EmbeddedSource, out var cdi)
PdbSourceDocument\SymbolSourceDocumentFinder.cs (1)
156
if (pdbReader.TryGetCustomDebugInformation(typeDefHandle,
PortableCustomDebugInfoKinds
.TypeDefinitionDocuments, out var cdi) &&
src\Dependencies\CodeAnalysis.Debugging\CustomDebugInfoKind.cs (6)
48
/// Equivalent to <see cref="
PortableCustomDebugInfoKinds
.StateMachineHoistedLocalScopes"/> in Portable PDB.
65
/// Equivalent to <see cref="
PortableCustomDebugInfoKinds
.DynamicLocalVariables"/> in Portable PDB.
75
/// Equivalent to <see cref="
PortableCustomDebugInfoKinds
.EncLocalSlotMap"/> in Portable PDB.
85
/// Equivalent to <see cref="
PortableCustomDebugInfoKinds
.EncLambdaAndClosureMap"/> in Portable PDB.
94
/// Equivalent to <see cref="
PortableCustomDebugInfoKinds
.TupleElementNames"/> in Portable PDB.
103
/// Equivalent to <see cref="
PortableCustomDebugInfoKinds
.EncStateMachineStateMap"/> in Portable PDB.
src\Dependencies\CodeAnalysis.Debugging\CustomDebugInfoReader.cs (1)
905
if (!pdbReader.TryGetCustomDebugInformation(EntityHandle.ModuleDefinition,
PortableCustomDebugInfoKinds
.CompilationOptions, out var customDebugInformation))