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