4 instantiations of ScopedTypeSyntax
Microsoft.CodeAnalysis.CSharp (4)
_generated\1\Syntax.xml.Internal.Generated.cs (4)
1757=> new ScopedTypeSyntax(this.Kind, this.scopedKeyword, this.type, diagnostics, GetAnnotations()); 1760=> new ScopedTypeSyntax(this.Kind, this.scopedKeyword, this.type, GetDiagnostics(), annotations); 29131var result = new ScopedTypeSyntax(SyntaxKind.ScopedType, scopedKeyword, type, this.context); 34553var result = new ScopedTypeSyntax(SyntaxKind.ScopedType, scopedKeyword, type);
12 references to ScopedTypeSyntax
Microsoft.CodeAnalysis.CSharp (12)
_generated\1\Syntax.xml.Internal.Generated.cs (11)
1739public ScopedTypeSyntax Update(SyntaxToken scopedKeyword, TypeSyntax type) 1743var newNode = SyntaxFactory.ScopedType(scopedKeyword, type); 27435public virtual TResult VisitScopedType(ScopedTypeSyntax node) => this.DefaultVisit(node); 27689public virtual void VisitScopedType(ScopedTypeSyntax node) => this.DefaultVisit(node); 27981public override CSharpSyntaxNode VisitScopedType(ScopedTypeSyntax node) 29119public ScopedTypeSyntax ScopedType(SyntaxToken scopedKeyword, TypeSyntax type) 29129if (cached != null) return (ScopedTypeSyntax)cached; 29131var result = new ScopedTypeSyntax(SyntaxKind.ScopedType, scopedKeyword, type, this.context); 34541public static ScopedTypeSyntax ScopedType(SyntaxToken scopedKeyword, TypeSyntax type) 34551if (cached != null) return (ScopedTypeSyntax)cached; 34553var result = new ScopedTypeSyntax(SyntaxKind.ScopedType, scopedKeyword, type);
_generated\2\Syntax.xml.Syntax.Generated.cs (1)
1054public SyntaxToken ScopedKeyword => new SyntaxToken(this, ((InternalSyntax.ScopedTypeSyntax)this.Green).scopedKeyword, Position, 0);