12 references to CreateNonLazyType
Microsoft.CodeAnalysis.CSharp (12)
Symbols\TypeWithAnnotations.cs (12)
102return CreateNonLazyType(typeSymbol, nullableAnnotation, customModifiers.NullToEmpty());
196return CreateNonLazyType(typeSymbol, NullableAnnotation.Annotated, this.CustomModifiers);
505return CreateNonLazyType(
684result = CreateNonLazyType(newTypeSymbol, NullableAnnotation.Oblivious, result.CustomModifiers);
704return CreateNonLazyType(typeSymbol, NullableAnnotation.NotAnnotated, CustomModifiers);
716return CreateNonLazyType(newTypeSymbol, NullableAnnotation.Oblivious, CustomModifiers);
881return CreateNonLazyType(type.DefaultType, type.NullableAnnotation, customModifiers);
888return CreateNonLazyType(typeSymbol, type.NullableAnnotation, customModifiers);
893return CreateNonLazyType(type.DefaultType, NullableAnnotation.Annotated, _customModifiers);
899return CreateNonLazyType(defaultType, defaultType.IsNullableType() ? type.NullableAnnotation : NullableAnnotation.NotAnnotated, _customModifiers);
990return CreateNonLazyType(resolvedType, type.NullableAnnotation, customModifiers);
1000return CreateNonLazyType(typeSymbol, type.NullableAnnotation, customModifiers);