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