7 references to s_defaultStringHandlerAttributeIndexes
Microsoft.CodeAnalysis.CSharp (7)
Symbols\Metadata\PE\PEParameterSymbol.cs (7)
174
private ImmutableArray<int> _lazyInterpolatedStringHandlerAttributeIndexes =
s_defaultStringHandlerAttributeIndexes
;
831
Debug.Assert(indexes !=
s_defaultStringHandlerAttributeIndexes
);
842
Debug.Assert(indexes !=
s_defaultStringHandlerAttributeIndexes
);
850
if (indexes ==
s_defaultStringHandlerAttributeIndexes
)
853
Debug.Assert(indexes !=
s_defaultStringHandlerAttributeIndexes
);
854
var initialized = ImmutableInterlocked.InterlockedCompareExchange(ref _lazyInterpolatedStringHandlerAttributeIndexes, value: indexes, comparand:
s_defaultStringHandlerAttributeIndexes
);
855
Debug.Assert(initialized ==
s_defaultStringHandlerAttributeIndexes
|| indexes == initialized || indexes.SequenceEqual(initialized));