28 references to ArgumentsOpt
Microsoft.CodeAnalysis.VisualBasic (28)
Analysis\FlowAnalysis\AbstractFlowPass.vb (1)
1104Dim arguments = node.ArgumentsOpt
Binding\Binder_Expressions.vb (3)
1707If Not invocation.ArgumentsOpt.IsEmpty Then 1708Dim newArguments(invocation.ArgumentsOpt.Length - 1) As BoundExpression 1710newArguments(i) = MakeRValue(invocation.ArgumentsOpt(i), diagnostics)
Binding\Binder_Invocation.vb (1)
2928Dim args = invocation.ArgumentsOpt
BoundTree\BoundAssignmentOperator.vb (2)
75If Not invocation.ArgumentsOpt.IsDefault Then 76For Each arg In invocation.ArgumentsOpt
BoundTree\BoundLateInvocation.vb (1)
28Return Me.Update(member, Me.ArgumentsOpt, Me.ArgumentNamesOpt, newAccessKind, Me.MethodOrPropertyGroupOpt, Me.Type)
BoundTree\BoundRedimClause.vb (2)
19If Not invocation.ArgumentsOpt.IsDefault Then 20For Each arg In invocation.ArgumentsOpt
BoundTree\Expression.vb (1)
87Return StaticCast(Of BoundNode).From(Me.ArgumentsOpt.Insert(0, Me.Member))
Generated\BoundNodes.xml.Generated.vb (4)
3313If member IsNot Me.Member OrElse argumentsOpt <> Me.ArgumentsOpt OrElse argumentNamesOpt <> Me.ArgumentNamesOpt OrElse accessKind <> Me.AccessKind OrElse methodOrPropertyGroupOpt IsNot Me.MethodOrPropertyGroupOpt OrElse type IsNot Me.Type Then 11377Me.VisitList(node.ArgumentsOpt) 12379Dim argumentsOpt As ImmutableArray(Of BoundExpression) = Me.VisitList(node.ArgumentsOpt) 13602New TreeDumperNode("argumentsOpt", Nothing, From x In node.ArgumentsOpt Select Visit(x, Nothing)),
Lowering\Diagnostics\DiagnosticsPass_ExpressionLambdas.vb (1)
377Me.VisitList(node.ArgumentsOpt)
Lowering\LocalRewriter\LocalRewriter_AssignmentOperator.vb (2)
299VisitList(invocation.ArgumentsOpt), 305VisitList(invocation.ArgumentsOpt),
Lowering\LocalRewriter\LocalRewriter_Call.vb (2)
360VisitList(invocation.ArgumentsOpt), 366VisitList(invocation.ArgumentsOpt),
Lowering\LocalRewriter\LocalRewriter_LateBindingHelpers.vb (2)
439argExpressions:=invocation.ArgumentsOpt, 626Dim arguments As BoundExpression = LateMakeSetArgumentArrayArgument(syntax, assignmentValue.MakeRValue, invocation.ArgumentsOpt, invocation.ArgumentNamesOpt, lateIndexSetMethod.Parameters(1).Type)
Lowering\LocalRewriter\LocalRewriter_LateInvocation.vb (2)
35node.ArgumentsOpt, 42Return RewriteLateBoundIndexInvocation(node, node.Member, node.ArgumentsOpt)
Lowering\UseTwiceRewriter.vb (3)
392If node.ArgumentsOpt.IsEmpty Then 396Dim nArgs = node.ArgumentsOpt.Length 401Dim boundArgument As BoundExpression = node.ArgumentsOpt(i)
Operations\VisualBasicOperationFactory.vb (1)
809Dim arguments As ImmutableArray(Of IOperation) = CreateFromArray(Of BoundExpression, IOperation)(boundLateInvocation.ArgumentsOpt)