Implemented interface members:
1 write to
Microsoft.CodeAnalysis.CodeStyle (1)
src\Dependencies\Collections\SegmentedList`1.cs (1)
234this[index] = (T)value!;
27 references to
Microsoft.CodeAnalysis.CodeStyle (27)
src\Dependencies\Collections\ImmutableSegmentedList`1.cs (3)
98public T this[int index] => _list[index]; 102get => _list[index]; 108get => _list[index];
src\Dependencies\Collections\ImmutableSegmentedList`1+ValueBuilder.cs (1)
49readonly get => ReadOnlyList[index];
src\Dependencies\Collections\SegmentedList`1.cs (1)
227get => this[index];
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Collections\ImmutableIntervalTree`1.cs (1)
114destination[destinationIndex] = new(source[rootIndexInSource], destinationIndex);
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Context\FormattingContext.cs (2)
160var operationSpan = operations[i].TextSpan; 168mergedList.Add(operations[i]);
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Engine\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)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Engine\TokenStream.Iterator.cs (2)
39_current = (_index, _tokensIncludingZeroWidth[_index], _tokensIncludingZeroWidth[_index + 1]);
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Serialization\ObjectReader.ReaderReferenceMap.cs (1)
39=> _values[referenceId];