1 write to Argument
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
7591
this.
Argument
= argument;
23 references to Argument
Microsoft.CodeAnalysis.CSharp (23)
Binder\Binder.ValueChecks.cs (1)
805
implicitIndexer.
Argument
,
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)
290
BoundExpression argument = (BoundExpression)this.Visit(node.
Argument
);
FlowAnalysis\AbstractFlowPass.cs (1)
1502
VisitRvalue(node.
Argument
);
FlowAnalysis\NullableWalker.cs (1)
12262
VisitRvalue(node.
Argument
);
FlowAnalysis\NullableWalker.DebugVerifier.cs (1)
441
Visit(node.
Argument
);
Generated\BoundNodes.xml.Generated.cs (4)
7615
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))
10909
this.Visit(node.
Argument
);
12412
BoundExpression argument = (BoundExpression)this.Visit(node.
Argument
);
17309
new TreeDumperNode("argument", null, new TreeDumperNode[] { Visit(node.
Argument
, null) }),
Lowering\LocalRewriter\LocalRewriter_CompoundAssignmentOperator.cs (4)
543
indexerAccess.
Argument
.Type,
550
throw ExceptionUtilities.UnexpectedValue(indexerAccess.
Argument
.Type);
755
Debug.Assert(Binder.IsWellKnownSystemIndex(implicitIndexerAccess.
Argument
.Type, _compilation)
756
|| Binder.IsWellKnownSystemRange(implicitIndexerAccess.
Argument
.Type, _compilation));
Lowering\LocalRewriter\LocalRewriter_IndexerAccess.cs (5)
500
var argumentType = node.
Argument
.Type;
546
node.
Argument
.Type,
551
BoundExpression makeOffsetInput = DetermineMakePatternIndexOffsetExpressionStrategy(node.
Argument
, out PatternIndexOffsetLoweringStrategy strategy);
857
Debug.Assert(Binder.IsWellKnownSystemRange(node.
Argument
.Type, _compilation));
870
var rangeArg = node.
Argument
;
Lowering\LocalRewriter\LocalRewriter_ObjectOrCollectionInitializerExpression.cs (2)
517
if (TypeSymbol.Equals(implicitIndexer.
Argument
.Type, _compilation.GetWellKnownType(WellKnownType.System_Index), TypeCompareKind.ConsiderEverything))
593
result.Add(VisitExpression(implicitIndexerAccess.
Argument
));
Operations\CSharpOperationFactory.cs (1)
1704
IOperation argument = Create(boundIndexerAccess.
Argument
);