6
6
using System . Diagnostics ;
7
7
using System . Threading ;
8
8
9
- #pragma warning disable CA1710 // Rename Microsoft.CodeAnalysis.ArrayBuilder<T> to end in 'Collection'.
10
9
#pragma warning disable CA1000 // Do not declare static members on generic types
11
10
12
11
namespace Analyzer . Utilities . PooledObjects
@@ -99,7 +98,7 @@ public T this[int index]
99
98
}
100
99
101
100
/// <summary>
102
- /// Write <paramref name="value"/> to slot <paramref name="index"/>.
101
+ /// Write <paramref name="value"/> to slot <paramref name="index"/>.
103
102
/// Fills in unallocated slots preceding the <paramref name="index"/>, if any.
104
103
/// </summary>
105
104
public void SetItem ( int index , T value )
@@ -306,7 +305,7 @@ public T[] ToArrayAndFree()
306
305
#region Poolable
307
306
308
307
// To implement Poolable, you need two things:
309
- // 1) Expose Freeing primitive.
308
+ // 1) Expose Freeing primitive.
310
309
private void Free ( )
311
310
{
312
311
var pool = _pool ;
@@ -317,9 +316,9 @@ private void Free()
317
316
// After about 50 (just 67) we have a long tail of infrequently used builder sizes.
318
317
// However we have builders with size up to 50K (just one such thing)
319
318
//
320
- // We do not want to retain (potentially indefinitely) very large builders
319
+ // We do not want to retain (potentially indefinitely) very large builders
321
320
// while the chance that we will need their size is diminishingly small.
322
- // It makes sense to constrain the size to some "not too small" number.
321
+ // It makes sense to constrain the size to some "not too small" number.
323
322
// Overall perf does not seem to be very sensitive to this number, so I picked 128 as a limit.
324
323
if ( _builder . Capacity < 128 )
325
324
{
@@ -414,7 +413,7 @@ internal Dictionary<K, ImmutableArray<T>> ToDictionary<K>(Func<T, K> keySelector
414
413
}
415
414
416
415
// bucketize
417
- // prevent reallocation. it may not have 'count' entries, but it won't have more.
416
+ // prevent reallocation. it may not have 'count' entries, but it won't have more.
418
417
var accumulator = new Dictionary < K , ArrayBuilder < T > > ( Count , comparer ) ;
419
418
for ( int i = 0 ; i < Count ; i ++ )
420
419
{
0 commit comments