Implemented interface members:
2 writes to
Microsoft.CodeAnalysis.CodeStyle (2)
ObjectReader.cs (1)
347=> _values[index] = value;
SegmentedList`1.cs (1)
207this[index] = (T)value!;
24 references to
Microsoft.CodeAnalysis.CodeStyle (24)
ImmutableSegmentedList`1.cs (3)
98public T this[int index] => _list[index]; 102get => _list[index]; 108get => _list[index];
ImmutableSegmentedList`1+ValueBuilder.cs (1)
49readonly get => ReadOnlyList[index];
ObjectReader.cs (1)
350=> _values[referenceId];
SegmentedList`1.cs (1)
200get => this[index];
TokenStream.cs (16)
86var currentToken = _tokens[i]; 130return new TokenData(this, this.TokenCount - 1, _tokens[this.TokenCount - 1]); 139return _tokens[index]; 152return new TokenData(this, tokenData.IndexInStream - 1, _tokens[tokenData.IndexInStream - 1]); 158if (_tokens[lastIndex].Equals(previousToken)) 160return new TokenData(this, lastIndex, _tokens[lastIndex]); 170return new TokenData(this, tokenData.IndexInStream + 1, _tokens[tokenData.IndexInStream + 1]); 363yield return ValueTuple.Create(ValueTuple.Create(_tokens[pairIndex], _tokens[pairIndex + 1]), trivia); 469var info = _factory.Create(_tokens[pairIndex], _tokens[pairIndex + 1]); 513return _tokens[tokenIndex] == token ? tokenIndex : -1; 522if (!_tokens[i].FullSpan.IsEmpty) 529if (_tokens[i] == token) 537if (!_tokens[i].FullSpan.IsEmpty) 544if (_tokens[i] == token)
TokenStream.Iterator.cs (2)
53_current = (_index, _tokensIncludingZeroWidth[_index], _tokensIncludingZeroWidth[_index + 1]);