PDepend\Source\Language\PHP\AbstractPHPParser::parseForInit PHP Метод

parseForInit() приватный Метод

------------------------ for ($x = 0, $y = 23, $z = 42; $x < $y; ++$x) } ------------------------
С версии: 0.9.8
private parseForInit ( ) : PDepend\Source\AST\ASTForInit
Результат PDepend\Source\AST\ASTForInit
    private function parseForInit()
    {
        $this->consumeComments();
        if (Tokens::T_SEMICOLON === $this->tokenizer->peek()) {
            return null;
        }
        $this->tokenStack->push();
        $init = $this->builder->buildAstForInit();
        $this->parseExpressionList($init);
        return $this->setNodePositionsAndReturn($init);
    }
AbstractPHPParser