Base:
property
Modifiers
Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterSyntax.Modifiers
6 references to Modifiers
Microsoft.CodeAnalysis.CSharp (6)
_generated\0\Syntax.xml.Main.Generated.cs (1)
2116
=> node.Update(VisitList(node.AttributeLists), VisitList(node.
Modifiers
), (TypeSyntax?)Visit(node.Type) ?? throw new ArgumentNullException("type"));
_generated\2\Syntax.xml.Syntax.Generated.cs (4)
13949
if (attributeLists != this.AttributeLists || modifiers != this.
Modifiers
|| type != this.Type)
13960
public new FunctionPointerParameterSyntax WithAttributeLists(SyntaxList<AttributeListSyntax> attributeLists) => Update(attributeLists, this.
Modifiers
, this.Type);
13964
public new FunctionPointerParameterSyntax WithType(TypeSyntax type) => Update(this.AttributeLists, this.
Modifiers
, type);
13969
public new FunctionPointerParameterSyntax AddModifiers(params SyntaxToken[] items) => WithModifiers(this.
Modifiers
.AddRange(items));
Symbols\FunctionPointers\FunctionPointerMethodSymbol.cs (1)
38
SyntaxTokenList modifiers = returnTypeParameter.
Modifiers
;