7 references to s_defaultStringHandlerAttributeIndexes
Microsoft.CodeAnalysis.CSharp (7)
Symbols\Metadata\PE\PEParameterSymbol.cs (7)
164
private ImmutableArray<int> _lazyInterpolatedStringHandlerAttributeIndexes =
s_defaultStringHandlerAttributeIndexes
;
814
Debug.Assert(indexes !=
s_defaultStringHandlerAttributeIndexes
);
825
Debug.Assert(indexes !=
s_defaultStringHandlerAttributeIndexes
);
833
if (indexes ==
s_defaultStringHandlerAttributeIndexes
)
836
Debug.Assert(indexes !=
s_defaultStringHandlerAttributeIndexes
);
837
var initialized = ImmutableInterlocked.InterlockedCompareExchange(ref _lazyInterpolatedStringHandlerAttributeIndexes, value: indexes, comparand:
s_defaultStringHandlerAttributeIndexes
);
838
Debug.Assert(initialized ==
s_defaultStringHandlerAttributeIndexes
|| indexes == initialized || indexes.SequenceEqual(initialized));