4 instantiations of CheckedStatementSyntax
Microsoft.CodeAnalysis.CSharp (4)
_generated\1\Syntax.xml.Internal.Generated.cs (4)
13340=> new CheckedStatementSyntax(this.Kind, this.attributeLists, this.keyword, this.block, diagnostics, GetAnnotations()); 13343=> new CheckedStatementSyntax(this.Kind, this.attributeLists, this.keyword, this.block, GetDiagnostics(), annotations); 31603var result = new CheckedStatementSyntax(kind, attributeLists.Node, keyword, block, this.context); 37025var result = new CheckedStatementSyntax(kind, attributeLists.Node, keyword, block);
12 references to CheckedStatementSyntax
Microsoft.CodeAnalysis.CSharp (12)
_generated\1\Syntax.xml.Internal.Generated.cs (11)
13322public CheckedStatementSyntax Update(CoreSyntax.SyntaxList<AttributeListSyntax> attributeLists, SyntaxToken keyword, BlockSyntax block) 13326var newNode = SyntaxFactory.CheckedStatement(this.Kind, attributeLists, keyword, block); 27551public virtual TResult VisitCheckedStatement(CheckedStatementSyntax node) => this.DefaultVisit(node); 27805public virtual void VisitCheckedStatement(CheckedStatementSyntax node) => this.DefaultVisit(node); 28329public override CSharpSyntaxNode VisitCheckedStatement(CheckedStatementSyntax node) 31580public CheckedStatementSyntax CheckedStatement(SyntaxKind kind, CoreSyntax.SyntaxList<AttributeListSyntax> attributeLists, SyntaxToken keyword, BlockSyntax block) 31601if (cached != null) return (CheckedStatementSyntax)cached; 31603var result = new CheckedStatementSyntax(kind, attributeLists.Node, keyword, block, this.context); 37002public static CheckedStatementSyntax CheckedStatement(SyntaxKind kind, CoreSyntax.SyntaxList<AttributeListSyntax> attributeLists, SyntaxToken keyword, BlockSyntax block) 37023if (cached != null) return (CheckedStatementSyntax)cached; 37025var result = new CheckedStatementSyntax(kind, attributeLists.Node, keyword, block);
_generated\2\Syntax.xml.Syntax.Generated.cs (1)
8250public SyntaxToken Keyword => new SyntaxToken(this, ((InternalSyntax.CheckedStatementSyntax)this.Green).keyword, GetChildPosition(1), GetChildIndex(1));