2 writes to CustomModifiers
Microsoft.CodeAnalysis (2)
MetadataReader\MetadataDecoder.cs (2)
1189info.CustomModifiers = DecodeModifiersOrThrow( 1198info.CustomModifiers = DecodeModifiersOrThrow(ref signatureReader, out typeCode);
11 references to CustomModifiers
Microsoft.CodeAnalysis (1)
MetadataReader\MetadataDecoder.cs (1)
1197info.RefCustomModifiers = info.CustomModifiers;
Microsoft.CodeAnalysis.CSharp (9)
Symbols\FunctionPointers\FunctionPointerMethodSymbol.cs (2)
548var returnType = TypeWithAnnotations.Create(retInfo.Type, customModifiers: CSharpCustomModifier.Convert(retInfo.CustomModifiers)); 568var paramType = TypeWithAnnotations.Create(param.Type, customModifiers: CSharpCustomModifier.Convert(param.CustomModifiers));
Symbols\Metadata\PE\MemberRefMetadataDecoder.cs (2)
266if (!CustomModifiersMatch(substituted.CustomModifiers, targetParam.CustomModifiers) || 294if (!CustomModifiersMatch(substituted.CustomModifiers, targetReturnParam.CustomModifiers) ||
Symbols\Metadata\PE\PEParameterSymbol.cs (2)
204parameterInfo.Handle, nullableContext, parameterInfo.CustomModifiers, isReturn, out isBad); 231handle, nullableContext, parameterInfo.CustomModifiers, isReturn: false, out isBad);
Symbols\Metadata\PE\PEPropertySymbol.cs (3)
205PEPropertySymbol result = returnInfo.CustomModifiers.IsDefaultOrEmpty && returnInfo.RefCustomModifiers.IsDefaultOrEmpty 275var typeCustomModifiers = CSharpCustomModifier.Convert(returnInfo.CustomModifiers); 343p.CustomModifiers.AnyRequired());
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (1)
Emit\NoPiaEmbedTypes.cs (1)
1482Assert.True(paramInfo[0].CustomModifiers.IsDefault);