Base:
property
Modifiers
Microsoft.CodeAnalysis.CSharp.Syntax.BaseParameterSyntax.Modifiers
8 references to Modifiers
Microsoft.CodeAnalysis.CSharp (6)
Symbols\FunctionPointers\FunctionPointerMethodSymbol.cs (1)
38
SyntaxTokenList modifiers = returnTypeParameter.
Modifiers
;
Syntax.xml.Main.Generated.cs (1)
2104
=> node.Update(VisitList(node.AttributeLists), VisitList(node.
Modifiers
), (TypeSyntax?)Visit(node.Type) ?? throw new ArgumentNullException("type"));
Syntax.xml.Syntax.Generated.cs (4)
13899
if (attributeLists != this.AttributeLists || modifiers != this.
Modifiers
|| type != this.Type)
13910
public new FunctionPointerParameterSyntax WithAttributeLists(SyntaxList<AttributeListSyntax> attributeLists) => Update(attributeLists, this.
Modifiers
, this.Type);
13914
public new FunctionPointerParameterSyntax WithType(TypeSyntax type) => Update(this.AttributeLists, this.
Modifiers
, type);
13919
public new FunctionPointerParameterSyntax AddModifiers(params SyntaxToken[] items) => WithModifiers(this.
Modifiers
.AddRange(items));
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (2)
Generated\Syntax.Test.xml.Generated.cs (2)
13661
Assert.Equal(default, node.
Modifiers
);
13663
var newNode = node.WithAttributeLists(node.AttributeLists).WithModifiers(node.
Modifiers
).WithType(node.Type);