7 references to Type
Microsoft.CodeAnalysis.CSharp (7)
Generated\BoundNodes.xml.Generated.cs (4)
1458
if (invokedExpression != this.InvokedExpression || arguments != this.Arguments || argumentRefKindsOpt != this.ArgumentRefKindsOpt || resultKind != this.ResultKind || !TypeSymbol.Equals(type, this.
Type
, TypeCompareKind.ConsiderEverything))
10603
TypeSymbol? type = this.VisitType(node.
Type
);
12217
updatedNode = node.Update(invokedExpression, arguments, node.ArgumentRefKindsOpt, node.ResultKind, node.
Type
);
14703
new TreeDumperNode("type", node.
Type
, null),
Lowering\LocalRewriter\LocalRewriter_FunctionPointerInvocation.cs (2)
48
BoundExpression rewrittenInvocation = node.Update(rewrittenExpression, rewrittenArgs, argumentRefKindsOpt, node.ResultKind, node.
Type
);
56
rewrittenInvocation = new BoundSequence(rewrittenInvocation.Syntax, temps.ToImmutableAndFree(), sideEffects: ImmutableArray<BoundExpression>.Empty, rewrittenInvocation, node.
Type
);
Lowering\SpillSequenceSpiller.cs (1)
1030
return UpdateExpression(builder, node.Update(invokedExpression, arguments, node.ArgumentRefKindsOpt, node.ResultKind, node.
Type
));