47 references to ParameterList
Microsoft.CodeAnalysis.VisualBasic (3)
Symbols\Source\CustomEventAccessorSymbol.vb (1)
69
Return BindParameters(Me.Locations.FirstOrDefault, binder, BlockSyntax.BlockStatement.
ParameterList
, diagBag)
Symbols\Source\SourcePropertyAccessorSymbol.vb (1)
286
Return BindParameters(Me.m_property, Me, Me.Locations.FirstOrDefault, binder, BlockSyntax.BlockStatement.
ParameterList
, diagBag)
VisualBasicDeclarationComputer.vb (1)
195
Dim paramInitializers = GetParameterListInitializersAndAttributes(methodBase.
ParameterList
)
Microsoft.CodeAnalysis.VisualBasic.CodeStyle (5)
StatementSyntaxExtensions.vb (2)
433
Return DirectCast(member, MethodBlockBaseSyntax).BlockStatement.
ParameterList
447
Return DirectCast(member, MethodBaseSyntax).
ParameterList
SyntaxNodeExtensions.vb (3)
1139
Return DirectCast(declaration, MethodBlockSyntax).BlockStatement.
ParameterList
1141
Return DirectCast(declaration, ConstructorBlockSyntax).BlockStatement.
ParameterList
1143
Return DirectCast(declaration, OperatorBlockSyntax).BlockStatement.
ParameterList
Microsoft.CodeAnalysis.VisualBasic.Features (12)
ChangeSignature\VisualBasicChangeSignatureService.vb (2)
324
If raiseEventAccessor.BlockStatement.
ParameterList
IsNot Nothing Then
325
Dim updatedParameters = UpdateDeclaration(raiseEventAccessor.BlockStatement.
ParameterList
.Parameters, updatedSignature, s_createNewParameterSyntaxDelegate)
Completion\CompletionProviders\VisualBasicSuggestionModeCompletionProvider.vb (1)
66
For Each parameter In methodDeclaration.
ParameterList
.Parameters.Where(Function(p) p.FullSpan.End < position)
Completion\KeywordRecommenders\Declarations\ParameterModifiersKeywordRecommender.vb (3)
26
If methodDeclaration Is Nothing OrElse methodDeclaration.
ParameterList
Is Nothing Then
59
If methodDeclaration.
ParameterList
.OpenParenToken = targetToken Then
63
For Each parameter In methodDeclaration.
ParameterList
.Parameters.Where(Function(p) p.FullSpan.End < context.Position)
Debugging\ProximityExpressionsGetter.Worker.vb (2)
110
If methodBlock.BlockStatement.
ParameterList
IsNot Nothing Then
111
For Each p In methodBlock.BlockStatement.
ParameterList
.Parameters
EditAndContinue\SyntaxUtilities.vb (1)
130
Return ctor.BlockStatement.
ParameterList
.Parameters.Count = 0
EditAndContinue\VisualBasicEditAndContinueAnalyzer.vb (2)
1782
If header.
ParameterList
IsNot Nothing Then
1783
endToken = header.
ParameterList
.CloseParenToken
VisualBasicDeclarationComputer.vb (1)
195
Dim paramInitializers = GetParameterListInitializersAndAttributes(methodBase.
ParameterList
)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (15)
CodeCleanup\Providers\AddMissingTokensCodeCleanupProvider.vb (7)
263
If n.
ParameterList
IsNot Nothing Then
264
If n.
ParameterList
.HasLeadingTrivia Then
265
newParamList = newParamList.WithLeadingTrivia(n.
ParameterList
.GetLeadingTrivia)
268
If n.
ParameterList
.HasTrailingTrivia Then
269
newParamList = newParamList.WithTrailingTrivia(n.
ParameterList
.GetTrailingTrivia)
274
If n.HasTrailingTrivia AndAlso nodeWithParams.GetLastToken() = nodeWithParams.
ParameterList
.CloseParenToken Then
285
Return AddParenthesesTransform(node, newNode, nameChecker, Function(n) n.
ParameterList
, transform)
CodeGeneration\VisualBasicCodeGenerationService.vb (1)
302
Dim parameterList = methodBase.
ParameterList
Rename\LocalConflictVisitor.vb (2)
32
If node.BlockStatement.
ParameterList
IsNot Nothing Then
33
tokens.AddRange(From parameter In node.BlockStatement.
ParameterList
.Parameters
StatementSyntaxExtensions.vb (2)
433
Return DirectCast(member, MethodBlockBaseSyntax).BlockStatement.
ParameterList
447
Return DirectCast(member, MethodBaseSyntax).
ParameterList
SyntaxNodeExtensions.vb (3)
1139
Return DirectCast(declaration, MethodBlockSyntax).BlockStatement.
ParameterList
1141
Return DirectCast(declaration, ConstructorBlockSyntax).BlockStatement.
ParameterList
1143
Return DirectCast(declaration, OperatorBlockSyntax).BlockStatement.
ParameterList
Microsoft.VisualStudio.LanguageServices.VisualBasic (12)
CodeModel\VisualBasicCodeModelService.CodeModelEventCollector.vb (4)
606
GetParameters(oldMethod.
ParameterList
).AsReadOnlyList(),
607
GetParameters(newMethod.
ParameterList
).AsReadOnlyList(),
639
oldMethod.
ParameterList
,
640
newMethod.
ParameterList
,
CodeModel\VisualBasicCodeModelService.vb (8)
1168
Return If(methodStatement.
ParameterList
IsNot Nothing,
1169
methodStatement.
ParameterList
.Parameters,
3094
Dim firstParameter = accessorBlock.BlockStatement.
ParameterList
.Parameters.FirstOrDefault()
3123
newParameterList = newParameterList.WithTrailingTrivia(accessorBlock.BlockStatement.
ParameterList
.GetTrailingTrivia())
3124
newAccessorBlock = accessorBlock.ReplaceNode(accessorBlock.BlockStatement.
ParameterList
, newParameterList)
3358
Dim firstParameter = accessorBlock.BlockStatement.
ParameterList
.Parameters.FirstOrDefault()
3951
Dim parameterList = InsertParameterIntoParameterList(index, parameterNode, methodStatement.
ParameterList
)
3956
Dim parameterList = InsertParameterIntoParameterList(index, parameterNode, methodStatement.
ParameterList
)