1 write to Argument
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
7636
this.
Argument
= argument;
20 references to Argument
Microsoft.CodeAnalysis.CSharp (20)
BoundTree\BoundInlineArrayAccess.cs (2)
18
Debug.Assert(
Argument
.Type is
33
if (
Argument
.Type.Name == "Range")
FlowAnalysis\AbstractFlowPass.cs (2)
2376
VisitRvalue(node.
Argument
);
2389
VisitRvalue(access.
Argument
);
FlowAnalysis\DefiniteAssignment.cs (2)
1548
(elementAccess.
Argument
.ConstantValueOpt is { SpecialType: SpecialType.System_Int32, Int32Value: 0 } ||
1549
Binder.InferConstantIndexFromSystemIndex(compilation, elementAccess.
Argument
, length, out _) is 0))
FlowAnalysis\NullableWalker.cs (1)
5365
VisitRvalue(node.
Argument
);
Generated\BoundNodes.xml.Generated.cs (5)
7656
if (expression != this.Expression || argument != this.
Argument
|| isValue != this.IsValue || getItemOrSliceHelper != this.GetItemOrSliceHelper || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
10915
this.Visit(node.
Argument
);
12423
BoundExpression argument = (BoundExpression)this.Visit(node.
Argument
);
14999
BoundExpression argument = (BoundExpression)this.Visit(node.
Argument
);
17322
new TreeDumperNode("argument", null, new TreeDumperNode[] { Visit(node.
Argument
, null) }),
Lowering\LocalRewriter\LocalRewriter_IndexerAccess.cs (7)
245
Debug.Assert(node.
Argument
.Type is object);
262
if (node.
Argument
.Type.SpecialType == SpecialType.System_Int32)
264
result = getElementRef(node, rewrittenReceiver, index: VisitExpression(node.
Argument
), getItemOrSliceHelper, length);
270
if (Binder.IsWellKnownSystemIndex(node.
Argument
.Type, _compilation))
272
BoundExpression makeOffsetInput = DetermineMakePatternIndexOffsetExpressionStrategy(node.
Argument
, out PatternIndexOffsetLoweringStrategy strategy);
282
Debug.Assert(Binder.IsWellKnownSystemRange(node.
Argument
.Type, _compilation));
290
RewriteRangeParts(node.
Argument
, out rangeExpr, out startMakeOffsetInput, out startStrategy, out endMakeOffsetInput, out endStrategy, out rewrittenRangeArg);
Operations\CSharpOperationFactory.cs (1)
1726
IOperation argument = Create(boundInlineArrayAccess.
Argument
);