1 write to _customAttributeRowIds
Microsoft.CodeAnalysis (1)
Emit\EditAndContinue\DeltaMetadataWriter.cs (1)
118
_customAttributeRowIds
= ArrayBuilder<int>.GetInstance();
11 references to _customAttributeRowIds
Microsoft.CodeAnalysis (11)
Emit\EditAndContinue\DeltaMetadataWriter.cs (11)
1002
_customAttributeRowIds
.Add(MetadataTokens.GetRowNumber(handle));
1005
Debug.Assert(
_customAttributeRowIds
.IsSorted());
1015
_customAttributeRowIds
.AddRange(previouslyAddedRowIds);
1017
Debug.Assert(
_customAttributeRowIds
.IsSorted());
1026
int previousCustomAttributeRowIdsCount =
_customAttributeRowIds
.Count;
1032
_customAttributeRowIds
.Add(lastCustomAttributeRowId);
1036
if (
_customAttributeRowIds
.Count > previousCustomAttributeRowIdsCount)
1039
_customAttributesAdded.Add(parentHandle, previouslyAddedRowIds.AddRange(
_customAttributeRowIds
.Skip(previousCustomAttributeRowIdsCount)));
1079
_customAttributeRowIds
.Free();
1112
foreach (var rowId in
_customAttributeRowIds
)
1302
AddRowNumberTokens(tokens, TableIndex.CustomAttribute,
_customAttributeRowIds
);