5 references to Update
Microsoft.CodeAnalysis.CSharp (5)
Syntax.xml.Main.Generated.cs (1)
1828
=> node.
Update
(VisitList(node.AttributeLists), VisitList(node.Modifiers), (StatementSyntax?)Visit(node.Statement) ?? throw new ArgumentNullException("statement"));
Syntax.xml.Syntax.Generated.cs (3)
6214
public new GlobalStatementSyntax WithAttributeLists(SyntaxList<AttributeListSyntax> attributeLists) =>
Update
(attributeLists, this.Modifiers, this.Statement);
6216
public new GlobalStatementSyntax WithModifiers(SyntaxTokenList modifiers) =>
Update
(this.AttributeLists, modifiers, this.Statement);
6217
public GlobalStatementSyntax WithStatement(StatementSyntax statement) =>
Update
(this.AttributeLists, this.Modifiers, statement);
Syntax\GlobalStatementSyntax.cs (1)
10
=> this.
Update
(this.AttributeLists, this.Modifiers, statement);