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