7 references to RefKindKeyword
Microsoft.CodeAnalysis.CSharp (7)
_generated\0\Syntax.xml.Main.Generated.cs (1)
2155
=> node.Update(VisitToken(node.
RefKindKeyword
), VisitToken(node.ReadOnlyKeyword), (TypeSyntax?)Visit(node.Type) ?? throw new ArgumentNullException("type"));
_generated\2\Syntax.xml.Syntax.Generated.cs (3)
14807
if (refKindKeyword != this.
RefKindKeyword
|| readOnlyKeyword != this.ReadOnlyKeyword || type != this.Type)
14818
public CrefParameterSyntax WithReadOnlyKeyword(SyntaxToken readOnlyKeyword) => Update(this.
RefKindKeyword
, readOnlyKeyword, this.Type);
14819
public CrefParameterSyntax WithType(TypeSyntax type) => Update(this.
RefKindKeyword
, this.ReadOnlyKeyword, type);
Binder\Binder_Crefs.cs (1)
1136
RefKind refKind = parameter.
RefKindKeyword
.Kind().GetRefKind();
Syntax\CrefParameterSyntax.cs (2)
12
/// Pre C# 7.2 back-compat overload, which simply calls the replacement property <see cref="
RefKindKeyword
"/>.
15
public SyntaxToken RefOrOutKeyword => this.
RefKindKeyword
;