2 instantiations of SequencePointList
Microsoft.CodeAnalysis (2)
CodeGen\SequencePointList.cs (2)
28
private static readonly SequencePointList s_empty = new
SequencePointList
();
63
SequencePointList next = new
SequencePointList
(seqPointBuilder[i - 1].SyntaxTree, GetSubArray(seqPointBuilder, last, i - last, builder));
12 references to SequencePointList
Microsoft.CodeAnalysis (12)
CodeGen\ILBuilder.cs (2)
47
internal
SequencePointList
RealizedSequencePoints;
1007
this.RealizedSequencePoints =
SequencePointList
.Create(seqPoints, this);
CodeGen\MethodBody.cs (2)
57
SequencePointList
sequencePoints,
106
private static ImmutableArray<Cci.SequencePoint> GetSequencePoints(
SequencePointList
? sequencePoints, DebugDocumentProvider debugDocumentProvider)
CodeGen\SequencePointList.cs (8)
25
private
SequencePointList
_next; // Linked list of all points.
28
private static readonly
SequencePointList
s_empty = new SequencePointList();
47
public static
SequencePointList
Create(ArrayBuilder<RawSequencePoint> seqPointBuilder, ILBuilder builder)
51
return
SequencePointList
.s_empty;
54
SequencePointList
first = null, current = null;
63
SequencePointList
next = new SequencePointList(seqPointBuilder[i - 1].SyntaxTree, GetSubArray(seqPointBuilder, last, i - last, builder));
127
SequencePointList
current = this;
218
SequencePointList
current = this;