5 references to Update
Microsoft.CodeAnalysis.CSharp (5)
Syntax.xml.Main.Generated.cs (1)
2164
=> node.
Update
(VisitToken(node.LessThanToken), (XmlNameSyntax?)Visit(node.Name) ?? throw new ArgumentNullException("name"), VisitList(node.Attributes), VisitToken(node.SlashGreaterThanToken));
Syntax.xml.Syntax.Generated.cs (4)
15055
public XmlEmptyElementSyntax WithLessThanToken(SyntaxToken lessThanToken) =>
Update
(lessThanToken, this.Name, this.Attributes, this.SlashGreaterThanToken);
15056
public XmlEmptyElementSyntax WithName(XmlNameSyntax name) =>
Update
(this.LessThanToken, name, this.Attributes, this.SlashGreaterThanToken);
15057
public XmlEmptyElementSyntax WithAttributes(SyntaxList<XmlAttributeSyntax> attributes) =>
Update
(this.LessThanToken, this.Name, attributes, this.SlashGreaterThanToken);
15058
public XmlEmptyElementSyntax WithSlashGreaterThanToken(SyntaxToken slashGreaterThanToken) =>
Update
(this.LessThanToken, this.Name, this.Attributes, slashGreaterThanToken);