1 write to Argument
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
7656
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)
2424
VisitRvalue(node.
Argument
);
2437
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)
5327
VisitRvalue(node.
Argument
);
Generated\BoundNodes.xml.Generated.cs (5)
7676
if (expression != this.Expression || argument != this.
Argument
|| isValue != this.IsValue || getItemOrSliceHelper != this.GetItemOrSliceHelper || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
10925
this.Visit(node.
Argument
);
12430
BoundExpression argument = (BoundExpression)this.Visit(node.
Argument
);
15001
BoundExpression argument = (BoundExpression)this.Visit(node.
Argument
);
17321
new TreeDumperNode("argument", null, new TreeDumperNode[] { Visit(node.
Argument
, null) }),
Lowering\LocalRewriter\LocalRewriter_IndexerAccess.cs (7)
244
Debug.Assert(node.
Argument
.Type is object);
261
if (node.
Argument
.Type.SpecialType == SpecialType.System_Int32)
263
result = getElementRef(node, rewrittenReceiver, index: VisitExpression(node.
Argument
), getItemOrSliceHelper, length);
269
if (TypeSymbol.Equals(node.
Argument
.Type, _compilation.GetWellKnownType(WellKnownType.System_Index), TypeCompareKind.AllIgnoreOptions))
271
BoundExpression makeOffsetInput = DetermineMakePatternIndexOffsetExpressionStrategy(node.
Argument
, out PatternIndexOffsetLoweringStrategy strategy);
281
Debug.Assert(TypeSymbol.Equals(node.
Argument
.Type, _compilation.GetWellKnownType(WellKnownType.System_Range), TypeCompareKind.AllIgnoreOptions));
289
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
);