4 instantiations of RefTypeSyntax
Microsoft.CodeAnalysis.CSharp (4)
_generated\1\Syntax.xml.Internal.Generated.cs (4)
1680
=> new
RefTypeSyntax
(this.Kind, this.refKeyword, this.readOnlyKeyword, this.type, diagnostics, GetAnnotations());
1683
=> new
RefTypeSyntax
(this.Kind, this.refKeyword, this.readOnlyKeyword, this.type, GetDiagnostics(), annotations);
29110
var result = new
RefTypeSyntax
(SyntaxKind.RefType, refKeyword, readOnlyKeyword, type, this.context);
34532
var result = new
RefTypeSyntax
(SyntaxKind.RefType, refKeyword, readOnlyKeyword, type);
14 references to RefTypeSyntax
Microsoft.CodeAnalysis.CSharp (14)
_generated\1\Syntax.xml.Internal.Generated.cs (11)
1662
public
RefTypeSyntax
Update(SyntaxToken refKeyword, SyntaxToken readOnlyKeyword, TypeSyntax type)
1666
var
newNode = SyntaxFactory.RefType(refKeyword, readOnlyKeyword, type);
27434
public virtual TResult VisitRefType(
RefTypeSyntax
node) => this.DefaultVisit(node);
27688
public virtual void VisitRefType(
RefTypeSyntax
node) => this.DefaultVisit(node);
27978
public override CSharpSyntaxNode VisitRefType(
RefTypeSyntax
node)
29089
public
RefTypeSyntax
RefType(SyntaxToken refKeyword, SyntaxToken? readOnlyKeyword, TypeSyntax type)
29108
if (cached != null) return (
RefTypeSyntax
)cached;
29110
var
result = new RefTypeSyntax(SyntaxKind.RefType, refKeyword, readOnlyKeyword, type, this.context);
34511
public static
RefTypeSyntax
RefType(SyntaxToken refKeyword, SyntaxToken? readOnlyKeyword, TypeSyntax type)
34530
if (cached != null) return (
RefTypeSyntax
)cached;
34532
var
result = new RefTypeSyntax(SyntaxKind.RefType, refKeyword, readOnlyKeyword, type);
_generated\2\Syntax.xml.Syntax.Generated.cs (2)
1000
public SyntaxToken RefKeyword => new SyntaxToken(this, ((InternalSyntax.
RefTypeSyntax
)this.Green).refKeyword, Position, 0);
1007
var slot = ((Syntax.InternalSyntax.
RefTypeSyntax
)this.Green).readOnlyKeyword;
Parser\LanguageParser.cs (1)
3145
if (propertyType is
RefTypeSyntax
refType)