8 references to Type
Microsoft.CodeAnalysis.CSharp (8)
CodeGen\Optimizer.cs (1)
1304return node.Update(rewrittenArguments?.ToImmutableAndFree() ?? arguments, argRefKindsOpt, node.Type);
FlowAnalysis\NullableWalker.cs (1)
11585Debug.Assert(node.Type is null);
Generated\BoundNodes.xml.Generated.cs (4)
3082if (arguments != this.Arguments || argumentRefKindsOpt != this.ArgumentRefKindsOpt || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 11258TypeSymbol? type = this.VisitType(node.Type); 13325updatedNode = node.Update(arguments, node.ArgumentRefKindsOpt, node.Type); 15658new TreeDumperNode("type", node.Type, null),
Lowering\SpillSequenceSpiller.cs (2)
328return argumentList.Update(newArgs, argumentList.ArgumentRefKindsOpt, argumentList.Type); 773return UpdateExpression(builder, node.Update(newArgs, node.ArgumentRefKindsOpt, node.Type));