Base:
property
Modifiers
Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax.Modifiers
6 references to Modifiers
Microsoft.CodeAnalysis.CSharp (6)
_generated\0\Syntax.xml.Main.Generated.cs (1)
1840
=> node.Update(VisitList(node.AttributeLists), VisitList(node.
Modifiers
), (StatementSyntax?)Visit(node.Statement) ?? throw new ArgumentNullException("statement"));
_generated\2\Syntax.xml.Syntax.Generated.cs (4)
6249
if (attributeLists != this.AttributeLists || modifiers != this.
Modifiers
|| statement != this.Statement)
6260
public new GlobalStatementSyntax WithAttributeLists(SyntaxList<AttributeListSyntax> attributeLists) => Update(attributeLists, this.
Modifiers
, this.Statement);
6263
public GlobalStatementSyntax WithStatement(StatementSyntax statement) => Update(this.AttributeLists, this.
Modifiers
, statement);
6268
public new GlobalStatementSyntax AddModifiers(params SyntaxToken[] items) => WithModifiers(this.
Modifiers
.AddRange(items));
Syntax\GlobalStatementSyntax.cs (1)
10
=> this.Update(this.AttributeLists, this.
Modifiers
, statement);