7 references to s_defaultStringHandlerAttributeIndexes
Microsoft.CodeAnalysis.CSharp (7)
Symbols\Metadata\PE\PEParameterSymbol.cs (7)
175
private ImmutableArray<int> _lazyInterpolatedStringHandlerAttributeIndexes =
s_defaultStringHandlerAttributeIndexes
;
846
Debug.Assert(indexes !=
s_defaultStringHandlerAttributeIndexes
);
857
Debug.Assert(indexes !=
s_defaultStringHandlerAttributeIndexes
);
865
if (indexes ==
s_defaultStringHandlerAttributeIndexes
)
868
Debug.Assert(indexes !=
s_defaultStringHandlerAttributeIndexes
);
869
var initialized = ImmutableInterlocked.InterlockedCompareExchange(ref _lazyInterpolatedStringHandlerAttributeIndexes, value: indexes, comparand:
s_defaultStringHandlerAttributeIndexes
);
870
Debug.Assert(initialized ==
s_defaultStringHandlerAttributeIndexes
|| indexes == initialized || indexes.SequenceEqual(initialized));