13 references to Type
Microsoft.CodeAnalysis.CSharp (13)
CodeGen\EmitAddress.cs (3)
403var elementType = arrayAccess.Type; 417Debug.Assert(arrayAccess.Type.TypeKind == TypeKind.TypeParameter, "constrained call should only be used with type parameter types"); 427return !arrayAccess.Type.IsValueType;
CodeGen\EmitExpression.cs (1)
987var elementType = arrayAccess.Type;
Generated\BoundNodes.xml.Generated.cs (4)
2057if (expression != this.Expression || indices != this.Indices || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 10721TypeSymbol? type = this.VisitType(node.Type); 12478updatedNode = node.Update(expression, indices, node.Type); 14880new TreeDumperNode("type", node.Type, null),
Lowering\LocalRewriter\LocalRewriter_ObjectOrCollectionInitializerExpression.cs (1)
400rewrittenAccess = arrayAccess.Update(rewrittenReceiver, indices, arrayAccess.Type);
Lowering\SpillSequenceSpiller.cs (3)
731return UpdateExpression(indicesBuilder, node.Update(expression, indices, node.Type)); 823left = arrayAccess.Update(expression, indices, arrayAccess.Type); 870receiver = arrayAccess.Update(expression, indices, arrayAccess.Type);
Lowering\StateMachineRewriter\MethodToStateMachineRewriter.cs (1)
563return array.Update(expression, indices.ToImmutableAndFree(), array.Type);