Base:
property
ParameterList
Microsoft.CodeAnalysis.CSharp.Syntax.BaseMethodDeclarationSyntax.ParameterList
15 references to ParameterList
Microsoft.CodeAnalysis.CSharp (12)
_generated\0\Syntax.xml.Main.Generated.cs (1)
2086
=> node.Update(VisitList(node.AttributeLists), VisitList(node.Modifiers), VisitToken(node.TildeToken), VisitToken(node.Identifier), (ParameterListSyntax?)Visit(node.
ParameterList
) ?? throw new ArgumentNullException("parameterList"), (BlockSyntax?)Visit(node.Body), (ArrowExpressionClauseSyntax?)Visit(node.ExpressionBody), VisitToken(node.SemicolonToken));
_generated\2\Syntax.xml.Syntax.Generated.cs (10)
13011
if (attributeLists != this.AttributeLists || modifiers != this.Modifiers || tildeToken != this.TildeToken || identifier != this.Identifier || parameterList != this.
ParameterList
|| body != this.Body || expressionBody != this.ExpressionBody || semicolonToken != this.SemicolonToken)
13022
public new DestructorDeclarationSyntax WithAttributeLists(SyntaxList<AttributeListSyntax> attributeLists) => Update(attributeLists, this.Modifiers, this.TildeToken, this.Identifier, this.
ParameterList
, this.Body, this.ExpressionBody, this.SemicolonToken);
13024
public new DestructorDeclarationSyntax WithModifiers(SyntaxTokenList modifiers) => Update(this.AttributeLists, modifiers, this.TildeToken, this.Identifier, this.
ParameterList
, this.Body, this.ExpressionBody, this.SemicolonToken);
13025
public DestructorDeclarationSyntax WithTildeToken(SyntaxToken tildeToken) => Update(this.AttributeLists, this.Modifiers, tildeToken, this.Identifier, this.
ParameterList
, this.Body, this.ExpressionBody, this.SemicolonToken);
13026
public DestructorDeclarationSyntax WithIdentifier(SyntaxToken identifier) => Update(this.AttributeLists, this.Modifiers, this.TildeToken, identifier, this.
ParameterList
, this.Body, this.ExpressionBody, this.SemicolonToken);
13030
public new DestructorDeclarationSyntax WithBody(BlockSyntax? body) => Update(this.AttributeLists, this.Modifiers, this.TildeToken, this.Identifier, this.
ParameterList
, body, this.ExpressionBody, this.SemicolonToken);
13032
public new DestructorDeclarationSyntax WithExpressionBody(ArrowExpressionClauseSyntax? expressionBody) => Update(this.AttributeLists, this.Modifiers, this.TildeToken, this.Identifier, this.
ParameterList
, this.Body, expressionBody, this.SemicolonToken);
13034
public new DestructorDeclarationSyntax WithSemicolonToken(SyntaxToken semicolonToken) => Update(this.AttributeLists, this.Modifiers, this.TildeToken, this.Identifier, this.
ParameterList
, this.Body, this.ExpressionBody, semicolonToken);
13041
public new DestructorDeclarationSyntax AddParameterListParameters(params ParameterSyntax[] items) => WithParameterList(this.
ParameterList
.WithParameters(this.
ParameterList
.Parameters.AddRange(items)));
Symbols\Source\SourceDestructorSymbol.cs (1)
50
Debug.Assert(syntax.
ParameterList
.Parameters.Count == 0);
Microsoft.CodeAnalysis.CSharp.Features (3)
EditAndContinue\CSharpEditAndContinueAnalyzer.cs (1)
1694
return GetDiagnosticSpan(destructorDeclaration.Modifiers, destructorDeclaration.TildeToken, destructorDeclaration.
ParameterList
);
Organizing\Organizers\DestructorDeclarationOrganizer.cs (1)
33
syntax.
ParameterList
,
Structure\Providers\DestructorDeclarationStructureProvider.cs (1)
33
destructorDeclaration.
ParameterList
.GetLastToken(includeZeroWidth: true),