1 write to TypeNullableContextValue
Microsoft.Cci.Extensions (1)
Writers\CSharp\CSharpWriter.cs (1)
159
_declarationWriter.
TypeNullableContextValue
= value;
4 references to TypeNullableContextValue
Microsoft.Cci.Extensions (4)
Writers\CSharp\CSDeclarationWriter.cs (1)
480
nullableAttributeArgument = nullableAttribute.GetAttributeArgumentValue<byte>() ?? methodNullableContextValue ??
TypeNullableContextValue
?? ModuleNullableContextValue;
Writers\CSharp\CSDeclarationWriter.Generics.cs (2)
61
object nullableAttributeValue = nullableAttribute.GetAttributeArgumentValue<byte>() ?? methodNullableContextValue ??
TypeNullableContextValue
?? ModuleNullableContextValue;
102
yield return () => WriteTypeName(constraint, noSpace: true, nullableAttributeArgument: nullableAttributeValue ?? methodNullableContextValue ??
TypeNullableContextValue
?? ModuleNullableContextValue);
Writers\CSharp\CSDeclarationWriter.Types.cs (1)
74
if (type.IsGeneric) WriteGenericContraints(type.GenericParameters,
TypeNullableContextValue
); // Delegates are special, and the NullableContextValue we should fallback to is the delegate type one, not the invoke method one.