5 references to Update
Microsoft.CodeAnalysis.CSharp (5)
Syntax.xml.Main.Generated.cs (1)
2143
=> node.
Update
(VisitToken(node.RefKindKeyword), VisitToken(node.ReadOnlyKeyword), (TypeSyntax?)Visit(node.Type) ?? throw new ArgumentNullException("type"));
Syntax.xml.Syntax.Generated.cs (3)
14767
public CrefParameterSyntax WithRefKindKeyword(SyntaxToken refKindKeyword) =>
Update
(refKindKeyword, this.ReadOnlyKeyword, this.Type);
14768
public CrefParameterSyntax WithReadOnlyKeyword(SyntaxToken readOnlyKeyword) =>
Update
(this.RefKindKeyword, readOnlyKeyword, this.Type);
14769
public CrefParameterSyntax WithType(TypeSyntax type) =>
Update
(this.RefKindKeyword, this.ReadOnlyKeyword, type);
Syntax\CrefParameterSyntax.cs (1)
28
return this.
Update
(refKindKeyword: refKindKeyword, readOnlyKeyword: this.ReadOnlyKeyword, type: type);