5 references to Update
Microsoft.CodeAnalysis.CSharp (5)
Syntax.xml.Main.Generated.cs (1)
1870
=> node.
Update
(VisitList(node.AttributeLists), VisitToken(node.BreakKeyword), VisitToken(node.SemicolonToken));
Syntax.xml.Syntax.Generated.cs (3)
7152
public new BreakStatementSyntax WithAttributeLists(SyntaxList<AttributeListSyntax> attributeLists) =>
Update
(attributeLists, this.BreakKeyword, this.SemicolonToken);
7153
public BreakStatementSyntax WithBreakKeyword(SyntaxToken breakKeyword) =>
Update
(this.AttributeLists, breakKeyword, this.SemicolonToken);
7154
public BreakStatementSyntax WithSemicolonToken(SyntaxToken semicolonToken) =>
Update
(this.AttributeLists, this.BreakKeyword, semicolonToken);
Syntax\BreakStatementSyntax.cs (1)
12
=>
Update
(AttributeLists, breakKeyword, semicolonToken);