7 references to Update
Microsoft.CodeAnalysis.CSharp (6)
Syntax.xml.Main.Generated.cs (1)
2053
=> node.
Update
(VisitList(node.AttributeLists), VisitList(node.Modifiers), VisitToken(node.EventKeyword), (VariableDeclarationSyntax?)Visit(node.Declaration) ?? throw new ArgumentNullException("declaration"), VisitToken(node.SemicolonToken));
Syntax.xml.Syntax.Generated.cs (5)
12168
public new EventFieldDeclarationSyntax WithAttributeLists(SyntaxList<AttributeListSyntax> attributeLists) =>
Update
(attributeLists, this.Modifiers, this.EventKeyword, this.Declaration, this.SemicolonToken);
12170
public new EventFieldDeclarationSyntax WithModifiers(SyntaxTokenList modifiers) =>
Update
(this.AttributeLists, modifiers, this.EventKeyword, this.Declaration, this.SemicolonToken);
12171
public EventFieldDeclarationSyntax WithEventKeyword(SyntaxToken eventKeyword) =>
Update
(this.AttributeLists, this.Modifiers, eventKeyword, this.Declaration, this.SemicolonToken);
12173
public new EventFieldDeclarationSyntax WithDeclaration(VariableDeclarationSyntax declaration) =>
Update
(this.AttributeLists, this.Modifiers, this.EventKeyword, declaration, this.SemicolonToken);
12175
public new EventFieldDeclarationSyntax WithSemicolonToken(SyntaxToken semicolonToken) =>
Update
(this.AttributeLists, this.Modifiers, this.EventKeyword, this.Declaration, semicolonToken);
Microsoft.CodeAnalysis.CSharp.Features (1)
Organizing\Organizers\EventFieldDeclarationOrganizer.cs (1)
29
return syntax.
Update
(syntax.AttributeLists,