PHPParser_Parser::yyn326 PHP Method

yyn326() protected method

protected yyn326 ( $line, $docComment )
    protected function yyn326($line, $docComment)
    {
        foreach ($this->yyastk[$this->yysp - (3 - 2)] as &$s) {
            if (is_string($s)) {
                $s = PHPParser_Node_Scalar_String::parseEscapeSequences($s, '"');
            }
        }
        $this->yyval = new PHPParser_Node_Scalar_Encapsed($this->yyastk[$this->yysp - (3 - 2)], $line, $docComment);
    }
PHPParser_Parser