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