8 references to CreateArrayTypeSymbol
Microsoft.CodeAnalysis.CSharp (8)
Binder\Binder_Expressions.cs (1)
4461this.Compilation.CreateArrayTypeSymbol(GetSpecialType(SpecialType.System_Object, diagnostics, node)),
Compilation\CSharpCompilation.cs (1)
4243return CreateArrayTypeSymbol(elementType.EnsureCSharpSymbolOrNull(nameof(elementType)), rank, elementNullableAnnotation.ToInternalAnnotation()).GetPublicSymbol();
Lowering\SyntheticBoundNodeFactory.cs (3)
310return Compilation.CreateArrayTypeSymbol(WellKnownType(elementType)); 1571Compilation.CreateArrayTypeSymbol(elementType)); 1580Compilation.CreateArrayTypeSymbol(elementType))
Symbols\Synthesized\ReadOnlyListType\SynthesizedReadOnlyListTypeSymbol.cs (1)
279SynthesizedReadOnlyListKind.Array => compilation.CreateArrayTypeSymbol(elementType: typeParameter),
Symbols\Synthesized\SynthesizedEntryPointSymbol.cs (1)
34var submissionArrayType = compilation.CreateArrayTypeSymbol(systemObject);
Symbols\Synthesized\SynthesizedSubmissionConstructor.cs (1)
24var submissionArrayType = compilation.CreateArrayTypeSymbol(compilation.GetSpecialType(SpecialType.System_Object));