2 types derived from BoundForStatement
Microsoft.CodeAnalysis.VisualBasic (2)
Generated\BoundNodes.xml.Generated.vb (2)
5543Inherits BoundForStatement 5615Inherits BoundForStatement
2 instantiations of BoundForStatement
Microsoft.CodeAnalysis.VisualBasic (2)
Generated\BoundNodes.xml.Generated.vb (2)
5546MyBase.New(BoundKind.ForToStatement, syntax, declaredOrInferredLocalOpt, controlVariable, body, nextVariablesOpt, continueLabel, exitLabel, hasErrors OrElse initialValue.NonNullAndHasErrors() OrElse limitValue.NonNullAndHasErrors() OrElse stepValue.NonNullAndHasErrors() OrElse operatorsOpt.NonNullAndHasErrors() OrElse controlVariable.NonNullAndHasErrors() OrElse body.NonNullAndHasErrors() OrElse nextVariablesOpt.NonNullAndHasErrors()) 5618MyBase.New(BoundKind.ForEachStatement, syntax, declaredOrInferredLocalOpt, controlVariable, body, nextVariablesOpt, continueLabel, exitLabel, hasErrors OrElse collection.NonNullAndHasErrors() OrElse controlVariable.NonNullAndHasErrors() OrElse body.NonNullAndHasErrors() OrElse nextVariablesOpt.NonNullAndHasErrors())
9 references to BoundForStatement
Microsoft.CodeAnalysis.VisualBasic (9)
Analysis\FlowAnalysis\AbstractFlowPass.vb (1)
1924Protected Overridable Sub VisitForStatementVariableDeclaration(node As BoundForStatement)
Analysis\FlowAnalysis\DataFlowPass.vb (3)
338Return DirectCast(node, BoundForStatement).DeclaredOrInferredLocalOpt 1347Dim forStatement = DirectCast(node, BoundForStatement) 1846Protected Overrides Sub VisitForStatementVariableDeclaration(node As BoundForStatement)
Analysis\FlowAnalysis\VariablesDeclaredWalker.vb (1)
44Protected Overrides Sub VisitForStatementVariableDeclaration(node As BoundForStatement)
Analysis\ForLoopVerification.vb (2)
64Private Sub PreVisitForAndForEachStatement(boundForStatement As BoundForStatement) 96Private Sub PostVisitForAndForEachStatement(boundForStatement As BoundForStatement)
Binding\Binder_Statements.vb (1)
3079) As BoundForStatement
Operations\VisualBasicOperationFactory.vb (1)
1253Friend Function CreateBoundControlVariableOperation(boundForStatement As BoundForStatement) As IOperation