14 references to CreateArrayTypeSymbol
Microsoft.CodeAnalysis.CSharp (7)
Binder\Binder_Expressions.cs (1)
3664this.Compilation.CreateArrayTypeSymbol(GetSpecialType(SpecialType.System_Object, diagnostics, node)),
Compilation\CSharpCompilation.cs (1)
3717return CreateArrayTypeSymbol(elementType.EnsureCSharpSymbolOrNull(nameof(elementType)), rank, elementNullableAnnotation.ToInternalAnnotation()).GetPublicSymbol();
Lowering\SyntheticBoundNodeFactory.cs (3)
344return Compilation.CreateArrayTypeSymbol(WellKnownType(elementType)); 1428Compilation.CreateArrayTypeSymbol(elementType)); 1437Compilation.CreateArrayTypeSymbol(elementType))
Symbols\Synthesized\SynthesizedEntryPointSymbol.cs (1)
34var submissionArrayType = compilation.CreateArrayTypeSymbol(systemObject);
Symbols\Synthesized\SynthesizedSubmissionConstructor.cs (1)
24var submissionArrayType = compilation.CreateArrayTypeSymbol(compilation.GetSpecialType(SpecialType.System_Object));
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (4)
CodeGen\CodeGenReadonlyStructTests.cs (2)
885type = comp.CreateArrayTypeSymbol(comp.ObjectType); 1049type = comp.CreateArrayTypeSymbol(comp.ObjectType);
Emit\EditAndContinue\SymbolMatcherTests.cs (2)
395var member = compilation1.CreateArrayTypeSymbol(elementType); 435var member = compilation1.CreateArrayTypeSymbol(elementType);
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (3)
Symbols\ConversionTests.cs (2)
61compilation.CreateArrayTypeSymbol(sys.ChildType("String")), 62compilation.CreateArrayTypeSymbol(sys.ChildType("Object")),
Symbols\TypedConstantTests.cs (1)
34_arrayType = _compilation.CreateArrayTypeSymbol(_compilation.GetSpecialType(SpecialType.System_Object));