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