15 references to CreateArrayTypeSymbol
Microsoft.CodeAnalysis.CSharp (8)
Binder\Binder_Expressions.cs (1)
4383
this.Compilation.
CreateArrayTypeSymbol
(GetSpecialType(SpecialType.System_Object, diagnostics, node)),
Compilation\CSharpCompilation.cs (1)
4079
return
CreateArrayTypeSymbol
(elementType.EnsureCSharpSymbolOrNull(nameof(elementType)), rank, elementNullableAnnotation.ToInternalAnnotation()).GetPublicSymbol();
Lowering\SyntheticBoundNodeFactory.cs (3)
305
return Compilation.
CreateArrayTypeSymbol
(WellKnownType(elementType));
1570
Compilation.
CreateArrayTypeSymbol
(elementType));
1579
Compilation.
CreateArrayTypeSymbol
(elementType))
Symbols\Synthesized\ReadOnlyListType\SynthesizedReadOnlyListTypeSymbol.cs (1)
279
SynthesizedReadOnlyListKind.Array => compilation.
CreateArrayTypeSymbol
(elementType: typeParameter),
Symbols\Synthesized\SynthesizedEntryPointSymbol.cs (1)
34
var submissionArrayType = compilation.
CreateArrayTypeSymbol
(systemObject);
Symbols\Synthesized\SynthesizedSubmissionConstructor.cs (1)
24
var submissionArrayType = compilation.
CreateArrayTypeSymbol
(compilation.GetSpecialType(SpecialType.System_Object));
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (2)
CodeGen\CodeGenReadonlyStructTests.cs (2)
885
type = comp.
CreateArrayTypeSymbol
(comp.ObjectType);
1049
type = comp.
CreateArrayTypeSymbol
(comp.ObjectType);
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (2)
Emit\EditAndContinue\SymbolMatcherTests.cs (2)
346
var member = compilation1.
CreateArrayTypeSymbol
(elementType);
377
var member = compilation1.
CreateArrayTypeSymbol
(elementType);
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (3)
Symbols\ConversionTests.cs (2)
64
compilation.
CreateArrayTypeSymbol
(sys.ChildType("String")),
65
compilation.
CreateArrayTypeSymbol
(sys.ChildType("Object")),
Symbols\TypedConstantTests.cs (1)
34
_arrayType = _compilation.
CreateArrayTypeSymbol
(_compilation.GetSpecialType(SpecialType.System_Object));