24 references to ArgumentsOpt
Microsoft.CodeAnalysis.VisualBasic (24)
Analysis\FlowAnalysis\AbstractFlowPass.vb (1)
1113Dim arguments = node.ArgumentsOpt
Binding\Binder_Expressions.vb (3)
1732If Not invocation.ArgumentsOpt.IsEmpty Then 1733Dim newArguments(invocation.ArgumentsOpt.Length - 1) As BoundExpression 1735newArguments(i) = MakeRValue(invocation.ArgumentsOpt(i), diagnostics)
Binding\Binder_Invocation.vb (1)
2922Dim args = invocation.ArgumentsOpt
BoundTree\BoundLateInvocation.vb (1)
28Return Me.Update(member, Me.ArgumentsOpt, Me.ArgumentNamesOpt, newAccessKind, Me.MethodOrPropertyGroupOpt, Me.Type)
BoundTree\Expression.vb (1)
87Return StaticCast(Of BoundNode).From(Me.ArgumentsOpt.Insert(0, Me.Member))
Generated\BoundNodes.xml.Generated.vb (4)
3323If 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 11402Me.VisitList(node.ArgumentsOpt) 12404Dim argumentsOpt As ImmutableArray(Of BoundExpression) = Me.VisitList(node.ArgumentsOpt) 13630New TreeDumperNode("argumentsOpt", Nothing, From x In node.ArgumentsOpt Select Visit(x, Nothing)),
Lowering\Diagnostics\DiagnosticsPass_ExpressionLambdas.vb (1)
380Me.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)
435argExpressions:=invocation.ArgumentsOpt, 622Dim 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)
429If node.ArgumentsOpt.IsEmpty Then 433Dim nArgs = node.ArgumentsOpt.Length 438Dim boundArgument As BoundExpression = node.ArgumentsOpt(i)
Operations\VisualBasicOperationFactory.vb (1)
809Dim arguments As ImmutableArray(Of IOperation) = CreateFromArray(Of BoundExpression, IOperation)(boundLateInvocation.ArgumentsOpt)