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)
1052
_customAttributeRowIds
.Add(MetadataTokens.GetRowNumber(handle));
1055
Debug.Assert(
_customAttributeRowIds
.IsSorted());
1065
_customAttributeRowIds
.AddRange(previouslyAddedRowIds);
1067
Debug.Assert(
_customAttributeRowIds
.IsSorted());
1076
int previousCustomAttributeRowIdsCount =
_customAttributeRowIds
.Count;
1082
_customAttributeRowIds
.Add(lastCustomAttributeRowId);
1086
if (
_customAttributeRowIds
.Count > previousCustomAttributeRowIdsCount)
1089
_customAttributesAdded.Add(parentHandle, previouslyAddedRowIds.AddRange(
_customAttributeRowIds
.Skip(previousCustomAttributeRowIdsCount)));
1129
_customAttributeRowIds
.Free();
1162
foreach (var rowId in
_customAttributeRowIds
)
1352
AddRowNumberTokens(tokens, TableIndex.CustomAttribute,
_customAttributeRowIds
);