6 references to BoundBlock
Microsoft.CodeAnalysis.CSharp (6)
Binder\Binder.cs (1)
885return new BoundBlock(statement.Syntax, locals, localFunctions, hasUnsafeModifier: false, instrumentation: null,
Binder\Binder_Statements.cs (1)
1887return 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)
3219var result = new BoundBlock(this.Syntax, locals, localFunctions, hasUnsafeModifier, instrumentation, statements, this.HasErrors);
Lowering\LocalRewriter\LocalRewriter_Block.cs (1)
42return new BoundBlock(node.Syntax, node.Locals.AddRange(additionalLocals), node.LocalFunctions, node.HasUnsafeModifier, instrumentation, builder.ToImmutableAndFree(), node.HasErrors);
Lowering\SyntheticBoundNodeFactory.cs (1)
488return new BoundBlock(Syntax, locals, localFunctions, hasUnsafeModifier: false, instrumentation: null, statements) { WasCompilerGenerated = true };