11 references to BoundStatementList
Microsoft.CodeAnalysis.CSharp (11)
BoundTree\Constructors.cs (1)
625return new BoundStatementList(syntax, statements, hasErrors) { WasCompilerGenerated = true };
Generated\BoundNodes.xml.Generated.cs (1)
4836var result = new BoundStatementList(this.Syntax, statements, this.HasErrors);
Lowering\ClosureConversion\ClosureConversion.cs (1)
1208return new BoundStatementList(node.Syntax, statements);
Lowering\LocalRewriter\LocalRewriter.cs (1)
814return new BoundStatementList(node.Syntax, rewrittenStatements, node.HasErrors);
Lowering\LocalRewriter\LocalRewriter_ForEachStatement.cs (3)
632arrayVarDecl = new BoundStatementList(arrayVarDecl.Syntax, ImmutableArray.Create(collectionVarInitializationPreamble, arrayVarDecl)).MakeCompilerGenerated(); 661BoundStatement initializer = new BoundStatementList(forEachSyntax, 954BoundStatement initializer = new BoundStatementList(forEachSyntax,
Lowering\SpillSequenceSpiller.cs (1)
720exceptionFilterPrologueOpt = new BoundStatementList(node.Syntax, builder.GetStatements());
Lowering\StateMachineRewriter\MethodToStateMachineRewriter.cs (1)
762translated = new BoundStatementList(node.Syntax, statements);
Lowering\SyntheticBoundNodeFactory.cs (2)
541return new BoundStatementList(Syntax, statements) { WasCompilerGenerated = true }; 546return new BoundStatementList(Syntax, ImmutableArray.Create(first, second)) { WasCompilerGenerated = true };