16 references to StatementListSyntax
Microsoft.CodeAnalysis.VisualBasic (16)
Analysis\InitializerRewriter.vb (2)
171
Return New BoundBlock(block.Syntax, block.
StatementListSyntax
, block.Locals, boundStatements.ToImmutableAndFree(), block.HasErrors)
185
Return New BoundBlock(block.Syntax, block.
StatementListSyntax
, block.Locals, boundStatements.ToImmutableAndFree(), block.HasErrors)
Binding\Binder_Lambda.vb (1)
562
block = block.Update(block.
StatementListSyntax
, localBuilder.ToImmutableAndFree(), statements.ToImmutableAndFree)
Binding\Binder_Statements.vb (2)
353
body = body.Update(body.
StatementListSyntax
, body.Locals, body.Statements.RemoveAt(0))
359
body = body.Update(body.
StatementListSyntax
, body.Locals, body.Statements.Add(exitLabelStatement))
Generated\BoundNodes.xml.Generated.vb (3)
4390
If statementListSyntax <> Me.
StatementListSyntax
OrElse locals <> Me.Locals OrElse statements <> Me.Statements Then
12542
Return node.Update(node.
StatementListSyntax
, node.Locals, statements)
13817
New TreeDumperNode("statementListSyntax", node.
StatementListSyntax
, Nothing),
Lowering\LocalRewriter\LocalRewriter.vb (2)
404
Return block.Update(block.
StatementListSyntax
, block.Locals, consequenceWithEnd.AsImmutableOrNull)
425
Return block.Update(block.
StatementListSyntax
, block.Locals, consequenceWithEnd.AsImmutableOrNull)
Lowering\LocalRewriter\LocalRewriter_Block.vb (2)
45
node = node.Update(node.
StatementListSyntax
, builder.ToImmutableAndFree(), node.Statements)
65
Return New BoundBlock(node.Syntax, node.
StatementListSyntax
, If(synthesizedLocal Is Nothing, node.Locals, node.Locals.Add(synthesizedLocal)), builder.ToImmutableAndFree())
Lowering\LocalRewriter\LocalRewriter_UnstructuredExceptionHandling.vb (1)
53
body = body.Update(body.
StatementListSyntax
,
Lowering\LocalRewriter\LocalRewriter_Using.vb (1)
154
currentBody.
StatementListSyntax
,
Lowering\MethodToClassRewriter\MethodToClassRewriter.vb (1)
423
Return node.Update(node.
StatementListSyntax
, newLocals.ToImmutableAndFree(), newStatements.ToImmutableAndFree())
Lowering\Rewriter.vb (1)
121
Return New BoundBlock(body.Syntax, body.
StatementListSyntax
, body.Locals, body.Statements, hasErrors:=True)