1 write to _customAttributeRowIds
Microsoft.CodeAnalysis (1)
Emit\EditAndContinue\DeltaMetadataWriter.cs (1)
114
_customAttributeRowIds
= ArrayBuilder<int>.GetInstance();
11 references to _customAttributeRowIds
Microsoft.CodeAnalysis (11)
Emit\EditAndContinue\DeltaMetadataWriter.cs (11)
1015
_customAttributeRowIds
.Add(MetadataTokens.GetRowNumber(handle));
1018
Debug.Assert(
_customAttributeRowIds
.IsSorted());
1028
_customAttributeRowIds
.AddRange(previouslyAddedRowIds);
1030
Debug.Assert(
_customAttributeRowIds
.IsSorted());
1039
int previousCustomAttributeRowIdsCount =
_customAttributeRowIds
.Count;
1045
_customAttributeRowIds
.Add(lastCustomAttributeRowId);
1049
if (
_customAttributeRowIds
.Count > previousCustomAttributeRowIdsCount)
1052
_customAttributesAdded.Add(parentHandle, previouslyAddedRowIds.AddRange(
_customAttributeRowIds
.Skip(previousCustomAttributeRowIdsCount)));
1092
_customAttributeRowIds
.Free();
1125
foreach (var rowId in
_customAttributeRowIds
)
1315
AddRowNumberTokens(tokens, TableIndex.CustomAttribute,
_customAttributeRowIds
);