7 references to Update
Microsoft.CodeAnalysis.CSharp (6)
_generated\0\Syntax.xml.Main.Generated.cs (1)
2065
=> node.
Update
(VisitList(node.AttributeLists), VisitList(node.Modifiers), VisitToken(node.EventKeyword), (VariableDeclarationSyntax?)Visit(node.Declaration) ?? throw new ArgumentNullException("declaration"), VisitToken(node.SemicolonToken));
_generated\2\Syntax.xml.Syntax.Generated.cs (5)
12215
public new EventFieldDeclarationSyntax WithAttributeLists(SyntaxList<AttributeListSyntax> attributeLists) =>
Update
(attributeLists, this.Modifiers, this.EventKeyword, this.Declaration, this.SemicolonToken);
12217
public new EventFieldDeclarationSyntax WithModifiers(SyntaxTokenList modifiers) =>
Update
(this.AttributeLists, modifiers, this.EventKeyword, this.Declaration, this.SemicolonToken);
12218
public EventFieldDeclarationSyntax WithEventKeyword(SyntaxToken eventKeyword) =>
Update
(this.AttributeLists, this.Modifiers, eventKeyword, this.Declaration, this.SemicolonToken);
12220
public new EventFieldDeclarationSyntax WithDeclaration(VariableDeclarationSyntax declaration) =>
Update
(this.AttributeLists, this.Modifiers, this.EventKeyword, declaration, this.SemicolonToken);
12222
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,