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)
1014
_customAttributeRowIds
.Add(MetadataTokens.GetRowNumber(handle));
1017
Debug.Assert(
_customAttributeRowIds
.IsSorted());
1027
_customAttributeRowIds
.AddRange(previouslyAddedRowIds);
1029
Debug.Assert(
_customAttributeRowIds
.IsSorted());
1038
int previousCustomAttributeRowIdsCount =
_customAttributeRowIds
.Count;
1044
_customAttributeRowIds
.Add(lastCustomAttributeRowId);
1048
if (
_customAttributeRowIds
.Count > previousCustomAttributeRowIdsCount)
1051
_customAttributesAdded.Add(parentHandle, previouslyAddedRowIds.AddRange(
_customAttributeRowIds
.Skip(previousCustomAttributeRowIdsCount)));
1091
_customAttributeRowIds
.Free();
1124
foreach (var rowId in
_customAttributeRowIds
)
1314
AddRowNumberTokens(tokens, TableIndex.CustomAttribute,
_customAttributeRowIds
);