80 references to ArgumentList
Microsoft.CodeAnalysis.VisualBasic (15)
Binding\Binder_Initializers.vb (2)
409objectCreationExpressionSyntax.ArgumentList, 517objectCreationExpressionSyntax.ArgumentList,
Binding\Binder_ObjectInitializer.vb (2)
38BindArgumentsAndNames(node.ArgumentList, boundArguments, argumentNames, argumentNamesLocations, argumentDiagnostics) 61Return BindObjectCreationExpression(node.Type, node.ArgumentList, type, node, diagnostics, Nothing)
Binding\Binder_Statements.vb (1)
1219objectCreationExpressionSyntax.ArgumentList,
Generated\Syntax.xml.Main.Generated.vb (2)
3979Dim newArgumentList = DirectCast(Visit(node.ArgumentList), ArgumentListSyntax) 3980If node.ArgumentList IsNot newArgumentList Then anyChanges = True
Generated\Syntax.xml.Syntax.Generated.vb (8)
23356return Update(newKeyword, Me.AttributeLists, Me.Type, Me.ArgumentList, Me.Initializer) 23387return Update(Me.NewKeyword, attributeLists, Me.Type, Me.ArgumentList, Me.Initializer) 23412return Update(Me.NewKeyword, Me.AttributeLists, type, Me.ArgumentList, Me.Initializer) 23438Dim _child = If(Me.ArgumentList IsNot Nothing, Me.ArgumentList, SyntaxFactory.ArgumentList()) 23460return Update(Me.NewKeyword, Me.AttributeLists, Me.Type, Me.ArgumentList, initializer) 23485Return Me.ArgumentList 23522If newKeyword <> Me.NewKeyword OrElse attributeLists <> Me.AttributeLists OrElse type IsNot Me.Type OrElse argumentList IsNot Me.ArgumentList OrElse initializer IsNot Me.Initializer Then
Microsoft.CodeAnalysis.VisualBasic.CodeStyle (4)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\VisualBasic\Extensions\ParenthesizedExpressionSyntaxExtensions.vb (1)
225If objectCreation.ArgumentList Is Nothing Then
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\VisualBasic\Services\SyntaxFacts\VisualBasicSyntaxFacts.vb (2)
1764argumentList = objectCreationExpression.ArgumentList 1843argumentList = objectCreationExpression.ArgumentList
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\VisualBasic\Utilities\SpeculationAnalyzer.vb (1)
496Return DirectCast(expression, ObjectCreationExpressionSyntax).ArgumentList
Microsoft.CodeAnalysis.VisualBasic.CodeStyle.Fixes (12)
src\f736901a33c2b55b\VisualBasicTypeInferenceService.TypeInferrer.vb (1)
301index = creation.ArgumentList.Arguments.IndexOf(argumentOpt)
src\roslyn\src\Analyzers\VisualBasic\CodeFixes\GenerateConstructor\VisualBasicGenerateConstructorService.vb (3)
105If objectCreationExpression.ArgumentList IsNot Nothing AndAlso 106Not objectCreationExpression.ArgumentList.CloseParenToken.IsMissing Then 111arguments = GetArguments(objectCreationExpression.ArgumentList.Arguments)
src\roslyn\src\Analyzers\VisualBasic\CodeFixes\UseObjectInitializer\UseInitializerHelpers.vb (3)
14If objectCreation.ArgumentList IsNot Nothing AndAlso 15objectCreation.ArgumentList.Arguments.Count = 0 Then 17objectCreation = objectCreation.WithType(objectCreation.Type.WithTrailingTrivia(objectCreation.ArgumentList.GetTrailingTrivia())).
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\VisualBasic\Extensions\ContextQuery\SyntaxTreeExtensions.vb (2)
905If objectCreation.ArgumentList IsNot Nothing Then 906Return objectCreation.ArgumentList.CloseParenToken
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\VisualBasic\Extensions\ExpressionSyntaxExtensions.vb (1)
176DirectCast(expression, ObjectCreationExpressionSyntax).ArgumentList Is Nothing
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\VisualBasic\Extensions\ObjectCreationExpressionExtensions.vb (2)
13If objectCreationExpression.ArgumentList Is Nothing Then 17If objectCreationExpression.ArgumentList.Arguments.Count > 0 Then
Microsoft.CodeAnalysis.VisualBasic.Features (28)
ChangeSignature\VisualBasicChangeSignatureService.vb (2)
425objectCreation.ArgumentList, 536GetArgumentListDetailsRegardingParamsArrays(objectCreation.ArgumentList, argumentCount, lastArgumentIsNamed, lastArgumentExpression)
Completion\KeywordRecommenders\RecommendationHelpers.vb (4)
37lastToken = If(objectCreation.ArgumentList IsNot Nothing, 38objectCreation.ArgumentList.CloseParenToken, 63Dim lastToken = If(objectCreation.ArgumentList IsNot Nothing, 64objectCreation.ArgumentList.CloseParenToken,
GenerateType\VisualBasicGenerateTypeService.vb (8)
76objectCreationExpression.ArgumentList IsNot Nothing Then 77argumentList = objectCreationExpression.ArgumentList.Arguments.ToList() 271If objectCreationExpressionOpt.ArgumentList IsNot Nothing Then 272If objectCreationExpressionOpt.ArgumentList.CloseParenToken.IsMissing Then 279objectCreationExpressionOpt.ArgumentList.Arguments.Count = 1 AndAlso 280TypeOf objectCreationExpressionOpt.ArgumentList.Arguments(0) Is SimpleArgumentSyntax Then 281Dim simpleArgumentExpression = DirectCast(objectCreationExpressionOpt.ArgumentList.Arguments(0), SimpleArgumentSyntax).Expression 291ElseIf objectCreationExpressionOpt.ArgumentList.Arguments.Count <> 1 Then
SignatureHelp\ObjectCreationExpressionSignatureHelpProvider.vb (7)
33currentSpan.Start = SignatureHelpUtilities.GetSignatureHelpSpan(expression.ArgumentList).Start Then 35Return SignatureHelpUtilities.GetSignatureHelpState(expression.ArgumentList, position) 46Return expression.ArgumentList IsNot Nothing 56Return node.ArgumentList IsNot Nothing AndAlso 57node.ArgumentList.Span.Contains(token.SpanStart) AndAlso 58token <> node.ArgumentList.CloseParenToken 82Dim textSpan = GetSignatureHelpSpan(objectCreationExpression.ArgumentList)
src\roslyn\src\Analyzers\VisualBasic\CodeFixes\GenerateConstructor\VisualBasicGenerateConstructorService.vb (3)
105If objectCreationExpression.ArgumentList IsNot Nothing AndAlso 106Not objectCreationExpression.ArgumentList.CloseParenToken.IsMissing Then 111arguments = GetArguments(objectCreationExpression.ArgumentList.Arguments)
src\roslyn\src\Analyzers\VisualBasic\CodeFixes\UseObjectInitializer\UseInitializerHelpers.vb (3)
14If objectCreation.ArgumentList IsNot Nothing AndAlso 15objectCreation.ArgumentList.Arguments.Count = 0 Then 17objectCreation = objectCreation.WithType(objectCreation.Type.WithTrailingTrivia(objectCreation.ArgumentList.GetTrailingTrivia())).
Wrapping\SeparatedSyntaxList\VisualBasicArgumentWrapper.vb (1)
42TryCast(node, ObjectCreationExpressionSyntax)?.ArgumentList)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (11)
Simplification\VisualBasicSimplificationService.Expander.vb (1)
283If newObjectCreationExpression.ArgumentList Is Nothing Then
src\f736901a33c2b55b\VisualBasicTypeInferenceService.TypeInferrer.vb (1)
301index = creation.ArgumentList.Arguments.IndexOf(argumentOpt)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\VisualBasic\Extensions\ParenthesizedExpressionSyntaxExtensions.vb (1)
225If objectCreation.ArgumentList Is Nothing Then
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\VisualBasic\Services\SyntaxFacts\VisualBasicSyntaxFacts.vb (2)
1764argumentList = objectCreationExpression.ArgumentList 1843argumentList = objectCreationExpression.ArgumentList
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\VisualBasic\Utilities\SpeculationAnalyzer.vb (1)
496Return DirectCast(expression, ObjectCreationExpressionSyntax).ArgumentList
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\VisualBasic\Extensions\ContextQuery\SyntaxTreeExtensions.vb (2)
905If objectCreation.ArgumentList IsNot Nothing Then 906Return objectCreation.ArgumentList.CloseParenToken
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\VisualBasic\Extensions\ExpressionSyntaxExtensions.vb (1)
176DirectCast(expression, ObjectCreationExpressionSyntax).ArgumentList Is Nothing
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\VisualBasic\Extensions\ObjectCreationExpressionExtensions.vb (2)
13If objectCreationExpression.ArgumentList Is Nothing Then 17If objectCreationExpression.ArgumentList.Arguments.Count > 0 Then
Roslyn.Diagnostics.VisualBasic.Analyzers (10)
src\f736901a33c2b55b\VisualBasicTypeInferenceService.TypeInferrer.vb (1)
301index = creation.ArgumentList.Arguments.IndexOf(argumentOpt)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\VisualBasic\Extensions\ParenthesizedExpressionSyntaxExtensions.vb (1)
225If objectCreation.ArgumentList Is Nothing Then
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\VisualBasic\Services\SyntaxFacts\VisualBasicSyntaxFacts.vb (2)
1764argumentList = objectCreationExpression.ArgumentList 1843argumentList = objectCreationExpression.ArgumentList
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\VisualBasic\Utilities\SpeculationAnalyzer.vb (1)
496Return DirectCast(expression, ObjectCreationExpressionSyntax).ArgumentList
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\VisualBasic\Extensions\ContextQuery\SyntaxTreeExtensions.vb (2)
905If objectCreation.ArgumentList IsNot Nothing Then 906Return objectCreation.ArgumentList.CloseParenToken
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\VisualBasic\Extensions\ExpressionSyntaxExtensions.vb (1)
176DirectCast(expression, ObjectCreationExpressionSyntax).ArgumentList Is Nothing
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\VisualBasic\Extensions\ObjectCreationExpressionExtensions.vb (2)
13If objectCreationExpression.ArgumentList Is Nothing Then 17If objectCreationExpression.ArgumentList.Arguments.Count > 0 Then