3 implementations of SequencePoints
Microsoft.CodeAnalysis (3)
CodeGen\MethodBody.cs (1)
134public ImmutableArray<Cci.SequencePoint> SequencePoints => _sequencePoints;
Emit\NoPia\CommonEmbeddedMethod.cs (1)
137ImmutableArray<Cci.SequencePoint> Cci.IMethodBody.SequencePoints => ImmutableArray<Cci.SequencePoint>.Empty;
PEWriter\RootModuleStaticConstructor.cs (1)
144public ImmutableArray<SequencePoint> SequencePoints => ImmutableArray<SequencePoint>.Empty;
5 references to SequencePoints
Microsoft.CodeAnalysis (5)
Emit\EditAndContinue\DeltaMetadataWriter.cs (1)
286if (!_methodDefs.IsAddedNotChanged(def) && def.GetBody(Context)?.SequencePoints.Length > 0)
NativePdbWriter\PdbWriter.cs (2)
78bool emitAllDebugInfo = isKickoffMethod || !methodBody.SequencePoints.IsEmpty || 131EmitSequencePoints(methodBody.SequencePoints);
PEWriter\MetadataWriter.PortablePdb.cs (2)
66bool emitAllDebugInfo = isKickoffMethod || !bodyOpt.SequencePoints.IsEmpty; 71BlobHandle sequencePointsBlob = SerializeSequencePoints(localSignatureHandleOpt, bodyOpt.SequencePoints, _documentIndex, out var singleDocumentHandle);