1 write to Argument
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
7198
this.
Argument
= argument;
21 references to Argument
Microsoft.CodeAnalysis.CSharp (21)
BoundTree\BoundImplicitIndexerAccess.cs (1)
14
return this.Update(this.Receiver, this.
Argument
, lengthOrCountAccess, this.ReceiverPlaceholder,
BoundTree\Expression.cs (1)
180
protected override ImmutableArray<BoundNode?> Children => ImmutableArray.Create<BoundNode?>(this.Receiver,
Argument
);
BoundTree\NullabilityRewriter.cs (1)
168
BoundExpression argument = (BoundExpression)this.Visit(node.
Argument
);
FlowAnalysis\AbstractFlowPass.cs (1)
1414
VisitRvalue(node.
Argument
);
FlowAnalysis\NullableWalker.cs (1)
9843
VisitRvalue(node.
Argument
);
FlowAnalysis\NullableWalker.DebugVerifier.cs (1)
273
Visit(node.
Argument
);
Generated\BoundNodes.xml.Generated.cs (4)
7222
if (receiver != this.Receiver || argument != this.
Argument
|| lengthOrCountAccess != this.LengthOrCountAccess || receiverPlaceholder != this.ReceiverPlaceholder || indexerOrSliceAccess != this.IndexerOrSliceAccess || argumentPlaceholders != this.ArgumentPlaceholders || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
10247
this.Visit(node.
Argument
);
11534
BoundExpression argument = (BoundExpression)this.Visit(node.
Argument
);
16157
new TreeDumperNode("argument", null, new TreeDumperNode[] { Visit(node.
Argument
, null) }),
Lowering\LocalRewriter\LocalRewriter_CompoundAssignmentOperator.cs (4)
406
indexerAccess.
Argument
.Type,
413
throw ExceptionUtilities.UnexpectedValue(indexerAccess.
Argument
.Type);
614
Debug.Assert(implicitIndexerAccess.
Argument
.Type!.Equals(_compilation.GetWellKnownType(WellKnownType.System_Index))
615
|| implicitIndexerAccess.
Argument
.Type!.Equals(_compilation.GetWellKnownType(WellKnownType.System_Range)));
Lowering\LocalRewriter\LocalRewriter_IndexerAccess.cs (6)
208
node.
Argument
.Type,
217
node.
Argument
.Type,
253
node.
Argument
.Type,
258
BoundExpression makeOffsetInput = DetermineMakePatternIndexOffsetExpressionStrategy(node.
Argument
, out PatternIndexOffsetLoweringStrategy strategy);
504
node.
Argument
.Type,
519
var rangeArg = node.
Argument
;
Operations\CSharpOperationFactory.cs (1)
1571
IOperation argument = Create(boundIndexerAccess.
Argument
);