7 references to Update
Microsoft.CodeAnalysis.CSharp (7)
Syntax.xml.Main.Generated.cs (1)
1942
=> node.
Update
(VisitList(node.AttributeLists), VisitToken(node.TryKeyword), (BlockSyntax?)Visit(node.Block) ?? throw new ArgumentNullException("block"), VisitList(node.Catches), (FinallyClauseSyntax?)Visit(node.Finally));
Syntax.xml.Syntax.Generated.cs (5)
9012
public new TryStatementSyntax WithAttributeLists(SyntaxList<AttributeListSyntax> attributeLists) =>
Update
(attributeLists, this.TryKeyword, this.Block, this.Catches, this.Finally);
9013
public TryStatementSyntax WithTryKeyword(SyntaxToken tryKeyword) =>
Update
(this.AttributeLists, tryKeyword, this.Block, this.Catches, this.Finally);
9014
public TryStatementSyntax WithBlock(BlockSyntax block) =>
Update
(this.AttributeLists, this.TryKeyword, block, this.Catches, this.Finally);
9015
public TryStatementSyntax WithCatches(SyntaxList<CatchClauseSyntax> catches) =>
Update
(this.AttributeLists, this.TryKeyword, this.Block, catches, this.Finally);
9016
public TryStatementSyntax WithFinally(FinallyClauseSyntax? @finally) =>
Update
(this.AttributeLists, this.TryKeyword, this.Block, this.Catches, @finally);
Syntax\TryStatementSyntax.cs (1)
12
=>
Update
(AttributeLists, tryKeyword, block, catches, @finally);