4 references to Update
Microsoft.CodeAnalysis.CSharp (4)
Syntax.xml.Main.Generated.cs (1)
2071
=> node.
Update
(VisitToken(node.ColonToken), VisitToken(node.ThisOrBaseKeyword), (ArgumentListSyntax?)Visit(node.ArgumentList) ?? throw new ArgumentNullException("argumentList"));
Syntax.xml.Syntax.Generated.cs (3)
12880
public ConstructorInitializerSyntax WithColonToken(SyntaxToken colonToken) =>
Update
(colonToken, this.ThisOrBaseKeyword, this.ArgumentList);
12881
public ConstructorInitializerSyntax WithThisOrBaseKeyword(SyntaxToken thisOrBaseKeyword) =>
Update
(this.ColonToken, thisOrBaseKeyword, this.ArgumentList);
12882
public ConstructorInitializerSyntax WithArgumentList(ArgumentListSyntax argumentList) =>
Update
(this.ColonToken, this.ThisOrBaseKeyword, argumentList);