2 writes to SeqPointsOpt
Microsoft.CodeAnalysis (2)
CodeGen\ILBuilder.cs (2)
232
this.
SeqPointsOpt
= null;
1013
this.
SeqPointsOpt
= ArrayBuilder<RawSequencePoint>.GetInstance();
9 references to SeqPointsOpt
Microsoft.CodeAnalysis (8)
CodeGen\ILBuilder.cs (8)
229
if (this.
SeqPointsOpt
!= null)
231
this.
SeqPointsOpt
.Free();
963
if (this.
SeqPointsOpt
!= null)
970
foreach (var seqPoint in this.
SeqPointsOpt
)
1011
if (this.
SeqPointsOpt
== null)
1019
Debug.Assert(this.
SeqPointsOpt
.Count == 0);
1020
this.
SeqPointsOpt
.Add(new RawSequencePoint(syntaxTree, _initialHiddenSequencePointMarker, RawSequencePoint.HiddenSequencePointSpan));
1024
this.
SeqPointsOpt
.Add(new RawSequencePoint(syntaxTree, this.AllocateILMarker(), span));
Microsoft.CodeAnalysis.CSharp (1)
CodeGen\CodeGenerator.cs (1)
424
ArrayBuilder<RawSequencePoint> sequencePoints = _builder.
SeqPointsOpt
;