1 write to _customAttributeRowIds
Microsoft.CodeAnalysis (1)
Emit\EditAndContinue\DeltaMetadataWriter.cs (1)
117
_customAttributeRowIds
= ArrayBuilder<int>.GetInstance();
11 references to _customAttributeRowIds
Microsoft.CodeAnalysis (11)
Emit\EditAndContinue\DeltaMetadataWriter.cs (11)
1001
_customAttributeRowIds
.Add(MetadataTokens.GetRowNumber(handle));
1004
Debug.Assert(
_customAttributeRowIds
.IsSorted());
1014
_customAttributeRowIds
.AddRange(previouslyAddedRowIds);
1016
Debug.Assert(
_customAttributeRowIds
.IsSorted());
1025
int previousCustomAttributeRowIdsCount =
_customAttributeRowIds
.Count;
1031
_customAttributeRowIds
.Add(lastCustomAttributeRowId);
1035
if (
_customAttributeRowIds
.Count > previousCustomAttributeRowIdsCount)
1038
_customAttributesAdded.Add(parentHandle, previouslyAddedRowIds.AddRange(
_customAttributeRowIds
.Skip(previousCustomAttributeRowIdsCount)));
1078
_customAttributeRowIds
.Free();
1111
foreach (var rowId in
_customAttributeRowIds
)
1301
AddRowNumberTokens(tokens, TableIndex.CustomAttribute,
_customAttributeRowIds
);