5 references to Update
Microsoft.CodeAnalysis.CSharp (5)
Syntax.xml.Main.Generated.cs (1)
1561
=> node.
Update
(VisitToken(node.RefKeyword), VisitToken(node.ReadOnlyKeyword), (TypeSyntax?)Visit(node.Type) ?? throw new ArgumentNullException("type"));
Syntax.xml.Syntax.Generated.cs (3)
1033
public RefTypeSyntax WithRefKeyword(SyntaxToken refKeyword) =>
Update
(refKeyword, this.ReadOnlyKeyword, this.Type);
1034
public RefTypeSyntax WithReadOnlyKeyword(SyntaxToken readOnlyKeyword) =>
Update
(this.RefKeyword, readOnlyKeyword, this.Type);
1035
public RefTypeSyntax WithType(TypeSyntax type) =>
Update
(this.RefKeyword, this.ReadOnlyKeyword, type);
Syntax\RefTypeSyntax.cs (1)
13
return
Update
(refKeyword, ReadOnlyKeyword, type);