6 references to BoundBlock
Microsoft.CodeAnalysis.CSharp (6)
Binder\Binder.cs (1)
885
return new
BoundBlock
(statement.Syntax, locals, localFunctions, hasUnsafeModifier: false, instrumentation: null,
Binder\Binder_Statements.cs (1)
1887
return new
BoundBlock
(
BoundTree\Constructors.cs (1)
599
:
this
(syntax, locals, ImmutableArray<LocalFunctionSymbol>.Empty, hasUnsafeModifier: false, instrumentation: null, statements, hasErrors)
Generated\BoundNodes.xml.Generated.cs (1)
3219
var result = new
BoundBlock
(this.Syntax, locals, localFunctions, hasUnsafeModifier, instrumentation, statements, this.HasErrors);
Lowering\LocalRewriter\LocalRewriter_Block.cs (1)
42
return new
BoundBlock
(node.Syntax, node.Locals.AddRange(additionalLocals), node.LocalFunctions, node.HasUnsafeModifier, instrumentation, builder.ToImmutableAndFree(), node.HasErrors);
Lowering\SyntheticBoundNodeFactory.cs (1)
488
return new
BoundBlock
(Syntax, locals, localFunctions, hasUnsafeModifier: false, instrumentation: null, statements) { WasCompilerGenerated = true };