14 references to Block
Microsoft.CodeAnalysis.CSharp (12)
_generated\0\Syntax.xml.Main.Generated.cs (1)
1918=> node.Update(VisitList(node.AttributeLists), VisitToken(node.Keyword), (BlockSyntax?)Visit(node.Block) ?? throw new ArgumentNullException("block"));
_generated\2\Syntax.xml.Syntax.Generated.cs (7)
8181if (attributeLists != this.AttributeLists || keyword != this.Keyword || block != this.Block) 8192public new CheckedStatementSyntax WithAttributeLists(SyntaxList<AttributeListSyntax> attributeLists) => Update(attributeLists, this.Keyword, this.Block); 8193public CheckedStatementSyntax WithKeyword(SyntaxToken keyword) => Update(this.AttributeLists, keyword, this.Block); 8198public CheckedStatementSyntax AddBlockAttributeLists(params AttributeListSyntax[] items) => WithBlock(this.Block.WithAttributeLists(this.Block.AttributeLists.AddRange(items))); 8199public CheckedStatementSyntax AddBlockStatements(params StatementSyntax[] items) => WithBlock(this.Block.WithStatements(this.Block.Statements.AddRange(items)));
Binder\Binder_Statements.cs (1)
167return BindEmbeddedBlock(node.Block, diagnostics);
Binder\LocalBinderFactory.cs (1)
682Visit(node.Block, binder);
Compilation\MemberSemanticModel.cs (1)
2244node = n.Block;
Syntax\LookupPosition.cs (1)
383return ((CheckedStatementSyntax)statement).Block.CloseBraceToken;
Microsoft.CodeAnalysis.CSharp.Features (2)
Debugging\CSharpProximityExpressionsService.Worker.cs (1)
246AddLastStatementOfConstruct((statement as CheckedStatementSyntax).Block);
EditAndContinue\BreakpointSpans.cs (1)
712return TryCreateSpanForStatement(checkedStatement.Block, position);