1 write to Arguments
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
6987this.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)
3529VisitArguments(node.Arguments, default(ImmutableArray<RefKind>), node.Constructor);
FlowAnalysis\NullableWalker.cs (1)
4490var arguments = node.Arguments;
Generated\BoundNodes.xml.Generated.cs (5)
7001if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(constructor, this.Constructor) || arguments != this.Arguments || declarations != this.Declarations || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 10557this.VisitList(node.Arguments); 11877ImmutableArray<BoundExpression> arguments = this.VisitList(node.Arguments); 14271ImmutableArray<BoundExpression> arguments = this.VisitList(node.Arguments); 16628new 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);