1 write to Arguments
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
6988this.Arguments = arguments;
11 references to Arguments
Microsoft.CodeAnalysis.CSharp (11)
BoundTree\Expression.cs (1)
71protected override ImmutableArray<BoundNode?> Children => StaticCast<BoundNode?>.From(this.Arguments);
FlowAnalysis\AbstractFlowPass.cs (1)
3533VisitArguments(node.Arguments, default(ImmutableArray<RefKind>), node.Constructor);
FlowAnalysis\NullableWalker.cs (1)
4551var arguments = node.Arguments;
Generated\BoundNodes.xml.Generated.cs (5)
7002if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(constructor, this.Constructor) || arguments != this.Arguments || declarations != this.Declarations || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 10594this.VisitList(node.Arguments); 11914ImmutableArray<BoundExpression> arguments = this.VisitList(node.Arguments); 14308ImmutableArray<BoundExpression> arguments = this.VisitList(node.Arguments); 16665new TreeDumperNode("arguments", null, from x in node.Arguments select Visit(x, null)),
Lowering\LocalRewriter\LocalRewriter_AnonymousObjectCreation.cs (2)
19AssertNoImplicitInterpolatedStringHandlerConversions(node.Arguments); 21var rewrittenArguments = VisitList(node.Arguments);
Operations\CSharpOperationFactory.cs (1)
697ImmutableArray<IOperation> initializers = GetAnonymousObjectCreationInitializers(boundAnonymousObjectCreationExpression.Arguments, boundAnonymousObjectCreationExpression.Declarations, syntax, type, isImplicit);