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