setCurrentBranch() public method

public setCurrentBranch ( integer | string $currentBranch )
$currentBranch integer | string
Example #1
0
File: IfSt.php Project: ovr/phpsa
 /**
  * @param \PhpParser\Node\Stmt\If_ $ifStatement
  * @param Context $context
  * @return CompiledExpression
  */
 public function compile($ifStatement, Context $context)
 {
     $context->setCurrentBranch(Variable::BRANCH_CONDITIONAL_TRUE);
     $context->getExpressionCompiler()->compile($ifStatement->cond);
     foreach ($ifStatement->stmts as $stmt) {
         \PHPSA\nodeVisitorFactory($stmt, $context);
     }
     $context->setCurrentBranch(Variable::BRANCH_CONDITIONAL_EXTERNAL);
     foreach ($ifStatement->elseifs as $elseIfStatement) {
         \PHPSA\nodeVisitorFactory($elseIfStatement, $context);
     }
     $context->setCurrentBranch(Variable::BRANCH_CONDITIONAL_FALSE);
     if ($ifStatement->else) {
         \PHPSA\nodeVisitorFactory($ifStatement->else, $context);
     }
     $context->setCurrentBranch(Variable::BRANCH_ROOT);
 }