1 write to _lineStarts
Microsoft.CodeAnalysis (1)
Text\SourceText.cs (1)
861_lineStarts = lineStarts;
9 references to _lineStarts
Microsoft.CodeAnalysis (9)
Text\SourceText.cs (9)
864public override int Count => _lineStarts.Length; 870if (index < 0 || index >= _lineStarts.Length) 875int start = _lineStarts[index]; 876if (index == _lineStarts.Length - 1) 882int end = _lineStarts[index + 1]; 900if (position >= _lineStarts[lastLineNumber]) 902var limit = Math.Min(_lineStarts.Length, lastLineNumber + 4); 905if (position < _lineStarts[i]) 917lineNumber = _lineStarts.BinarySearch(position);