4 implementations of SequencePoints
Microsoft.CodeAnalysis (4)
CodeGen\MethodBody.cs (1)
136
public ImmutableArray<Cci.SequencePoint>
SequencePoints
=> _sequencePoints;
Emit\EditAndContinue\DeletedMethodBody.cs (1)
36
public ImmutableArray<Cci.SequencePoint>
SequencePoints
=> ImmutableArray<Cci.SequencePoint>.Empty;
Emit\NoPia\CommonEmbeddedMethod.cs (1)
138
ImmutableArray<Cci.SequencePoint> Cci.IMethodBody.
SequencePoints
=> ImmutableArray<Cci.SequencePoint>.Empty;
PEWriter\MethodDefinitionBase.cs (1)
143
public ImmutableArray<SequencePoint>
SequencePoints
=> ImmutableArray<SequencePoint>.Empty;
5 references to SequencePoints
Microsoft.CodeAnalysis (5)
Emit\EditAndContinue\DeltaMetadataWriter.cs (1)
292
if (!_methodDefs.IsAddedNotChanged(def) && def.GetBody(Context)?.
SequencePoints
.Length > 0)
NativePdbWriter\PdbWriter.cs (2)
77
bool emitAllDebugInfo = isKickoffMethod || !methodBody.
SequencePoints
.IsEmpty ||
130
EmitSequencePoints(methodBody.
SequencePoints
);
PEWriter\MetadataWriter.PortablePdb.cs (2)
66
bool emitAllDebugInfo = isKickoffMethod || !bodyOpt.
SequencePoints
.IsEmpty;
71
BlobHandle sequencePointsBlob = SerializeSequencePoints(localSignatureHandleOpt, bodyOpt.
SequencePoints
, _documentIndex, out var singleDocumentHandle);