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