123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751 |
- <?php
- namespace PhpParser\PrettyPrinter;
- use PhpParser\PrettyPrinterAbstract;
- use PhpParser\Node;
- use PhpParser\Node\Scalar;
- use PhpParser\Node\Scalar\MagicConst;
- use PhpParser\Node\Expr;
- use PhpParser\Node\Expr\AssignOp;
- use PhpParser\Node\Expr\BinaryOp;
- use PhpParser\Node\Expr\Cast;
- use PhpParser\Node\Stmt;
- use PhpParser\Node\Name;
- class Standard extends PrettyPrinterAbstract
- {
- // Special nodes
- public function pParam(Node\Param $node) {
- return ($node->type ? (is_string($node->type) ? $node->type : $this->p($node->type)) . ' ' : '')
- . ($node->byRef ? '&' : '')
- . ($node->variadic ? '... ' : '')
- . '$' . $node->name
- . ($node->default ? ' = ' . $this->p($node->default) : '');
- }
- public function pArg(Node\Arg $node) {
- return ($node->byRef ? '&' : '') . ($node->unpack ? '...' : '') . $this->p($node->value);
- }
- public function pConst(Node\Const_ $node) {
- return $node->name . ' = ' . $this->p($node->value);
- }
- // Names
- public function pName(Name $node) {
- return implode('\\', $node->parts);
- }
- public function pName_FullyQualified(Name\FullyQualified $node) {
- return '\\' . implode('\\', $node->parts);
- }
- public function pName_Relative(Name\Relative $node) {
- return 'namespace\\' . implode('\\', $node->parts);
- }
- // Magic Constants
- public function pScalar_MagicConst_Class(MagicConst\Class_ $node) {
- return '__CLASS__';
- }
- public function pScalar_MagicConst_Dir(MagicConst\Dir $node) {
- return '__DIR__';
- }
- public function pScalar_MagicConst_File(MagicConst\File $node) {
- return '__FILE__';
- }
- public function pScalar_MagicConst_Function(MagicConst\Function_ $node) {
- return '__FUNCTION__';
- }
- public function pScalar_MagicConst_Line(MagicConst\Line $node) {
- return '__LINE__';
- }
- public function pScalar_MagicConst_Method(MagicConst\Method $node) {
- return '__METHOD__';
- }
- public function pScalar_MagicConst_Namespace(MagicConst\Namespace_ $node) {
- return '__NAMESPACE__';
- }
- public function pScalar_MagicConst_Trait(MagicConst\Trait_ $node) {
- return '__TRAIT__';
- }
- // Scalars
- public function pScalar_String(Scalar\String $node) {
- return '\'' . $this->pNoIndent(addcslashes($node->value, '\'\\')) . '\'';
- }
- public function pScalar_Encapsed(Scalar\Encapsed $node) {
- return '"' . $this->pEncapsList($node->parts, '"') . '"';
- }
- public function pScalar_LNumber(Scalar\LNumber $node) {
- return (string) $node->value;
- }
- public function pScalar_DNumber(Scalar\DNumber $node) {
- $stringValue = (string) $node->value;
- // ensure that number is really printed as float
- return preg_match('/^-?[0-9]+$/', $stringValue) ? $stringValue . '.0' : $stringValue;
- }
- // Assignments
- public function pExpr_Assign(Expr\Assign $node) {
- return $this->pInfixOp('Expr_Assign', $node->var, ' = ', $node->expr);
- }
- public function pExpr_AssignRef(Expr\AssignRef $node) {
- return $this->pInfixOp('Expr_AssignRef', $node->var, ' =& ', $node->expr);
- }
- public function pExpr_AssignOp_Plus(AssignOp\Plus $node) {
- return $this->pInfixOp('Expr_AssignOp_Plus', $node->var, ' += ', $node->expr);
- }
- public function pExpr_AssignOp_Minus(AssignOp\Minus $node) {
- return $this->pInfixOp('Expr_AssignOp_Minus', $node->var, ' -= ', $node->expr);
- }
- public function pExpr_AssignOp_Mul(AssignOp\Mul $node) {
- return $this->pInfixOp('Expr_AssignOp_Mul', $node->var, ' *= ', $node->expr);
- }
- public function pExpr_AssignOp_Div(AssignOp\Div $node) {
- return $this->pInfixOp('Expr_AssignOp_Div', $node->var, ' /= ', $node->expr);
- }
- public function pExpr_AssignOp_Concat(AssignOp\Concat $node) {
- return $this->pInfixOp('Expr_AssignOp_Concat', $node->var, ' .= ', $node->expr);
- }
- public function pExpr_AssignOp_Mod(AssignOp\Mod $node) {
- return $this->pInfixOp('Expr_AssignOp_Mod', $node->var, ' %= ', $node->expr);
- }
- public function pExpr_AssignOp_BitwiseAnd(AssignOp\BitwiseAnd $node) {
- return $this->pInfixOp('Expr_AssignOp_BitwiseAnd', $node->var, ' &= ', $node->expr);
- }
- public function pExpr_AssignOp_BitwiseOr(AssignOp\BitwiseOr $node) {
- return $this->pInfixOp('Expr_AssignOp_BitwiseOr', $node->var, ' |= ', $node->expr);
- }
- public function pExpr_AssignOp_BitwiseXor(AssignOp\BitwiseXor $node) {
- return $this->pInfixOp('Expr_AssignOp_BitwiseXor', $node->var, ' ^= ', $node->expr);
- }
- public function pExpr_AssignOp_ShiftLeft(AssignOp\ShiftLeft $node) {
- return $this->pInfixOp('Expr_AssignOp_ShiftLeft', $node->var, ' <<= ', $node->expr);
- }
- public function pExpr_AssignOp_ShiftRight(AssignOp\ShiftRight $node) {
- return $this->pInfixOp('Expr_AssignOp_ShiftRight', $node->var, ' >>= ', $node->expr);
- }
- public function pExpr_AssignOp_Pow(AssignOp\Pow $node) {
- return $this->pInfixOp('Expr_AssignOp_Pow', $node->var, ' **= ', $node->expr);
- }
- // Binary expressions
- public function pExpr_BinaryOp_Plus(BinaryOp\Plus $node) {
- return $this->pInfixOp('Expr_BinaryOp_Plus', $node->left, ' + ', $node->right);
- }
- public function pExpr_BinaryOp_Minus(BinaryOp\Minus $node) {
- return $this->pInfixOp('Expr_BinaryOp_Minus', $node->left, ' - ', $node->right);
- }
- public function pExpr_BinaryOp_Mul(BinaryOp\Mul $node) {
- return $this->pInfixOp('Expr_BinaryOp_Mul', $node->left, ' * ', $node->right);
- }
- public function pExpr_BinaryOp_Div(BinaryOp\Div $node) {
- return $this->pInfixOp('Expr_BinaryOp_Div', $node->left, ' / ', $node->right);
- }
- public function pExpr_BinaryOp_Concat(BinaryOp\Concat $node) {
- return $this->pInfixOp('Expr_BinaryOp_Concat', $node->left, ' . ', $node->right);
- }
- public function pExpr_BinaryOp_Mod(BinaryOp\Mod $node) {
- return $this->pInfixOp('Expr_BinaryOp_Mod', $node->left, ' % ', $node->right);
- }
- public function pExpr_BinaryOp_BooleanAnd(BinaryOp\BooleanAnd $node) {
- return $this->pInfixOp('Expr_BinaryOp_BooleanAnd', $node->left, ' && ', $node->right);
- }
- public function pExpr_BinaryOp_BooleanOr(BinaryOp\BooleanOr $node) {
- return $this->pInfixOp('Expr_BinaryOp_BooleanOr', $node->left, ' || ', $node->right);
- }
- public function pExpr_BinaryOp_BitwiseAnd(BinaryOp\BitwiseAnd $node) {
- return $this->pInfixOp('Expr_BinaryOp_BitwiseAnd', $node->left, ' & ', $node->right);
- }
- public function pExpr_BinaryOp_BitwiseOr(BinaryOp\BitwiseOr $node) {
- return $this->pInfixOp('Expr_BinaryOp_BitwiseOr', $node->left, ' | ', $node->right);
- }
- public function pExpr_BinaryOp_BitwiseXor(BinaryOp\BitwiseXor $node) {
- return $this->pInfixOp('Expr_BinaryOp_BitwiseXor', $node->left, ' ^ ', $node->right);
- }
- public function pExpr_BinaryOp_ShiftLeft(BinaryOp\ShiftLeft $node) {
- return $this->pInfixOp('Expr_BinaryOp_ShiftLeft', $node->left, ' << ', $node->right);
- }
- public function pExpr_BinaryOp_ShiftRight(BinaryOp\ShiftRight $node) {
- return $this->pInfixOp('Expr_BinaryOp_ShiftRight', $node->left, ' >> ', $node->right);
- }
- public function pExpr_BinaryOp_Pow(BinaryOp\Pow $node) {
- return $this->pInfixOp('Expr_BinaryOp_Pow', $node->left, ' ** ', $node->right);
- }
- public function pExpr_BinaryOp_LogicalAnd(BinaryOp\LogicalAnd $node) {
- return $this->pInfixOp('Expr_BinaryOp_LogicalAnd', $node->left, ' and ', $node->right);
- }
- public function pExpr_BinaryOp_LogicalOr(BinaryOp\LogicalOr $node) {
- return $this->pInfixOp('Expr_BinaryOp_LogicalOr', $node->left, ' or ', $node->right);
- }
- public function pExpr_BinaryOp_LogicalXor(BinaryOp\LogicalXor $node) {
- return $this->pInfixOp('Expr_BinaryOp_LogicalXor', $node->left, ' xor ', $node->right);
- }
- public function pExpr_BinaryOp_Equal(BinaryOp\Equal $node) {
- return $this->pInfixOp('Expr_BinaryOp_Equal', $node->left, ' == ', $node->right);
- }
- public function pExpr_BinaryOp_NotEqual(BinaryOp\NotEqual $node) {
- return $this->pInfixOp('Expr_BinaryOp_NotEqual', $node->left, ' != ', $node->right);
- }
- public function pExpr_BinaryOp_Identical(BinaryOp\Identical $node) {
- return $this->pInfixOp('Expr_BinaryOp_Identical', $node->left, ' === ', $node->right);
- }
- public function pExpr_BinaryOp_NotIdentical(BinaryOp\NotIdentical $node) {
- return $this->pInfixOp('Expr_BinaryOp_NotIdentical', $node->left, ' !== ', $node->right);
- }
- public function pExpr_BinaryOp_Greater(BinaryOp\Greater $node) {
- return $this->pInfixOp('Expr_BinaryOp_Greater', $node->left, ' > ', $node->right);
- }
- public function pExpr_BinaryOp_GreaterOrEqual(BinaryOp\GreaterOrEqual $node) {
- return $this->pInfixOp('Expr_BinaryOp_GreaterOrEqual', $node->left, ' >= ', $node->right);
- }
- public function pExpr_BinaryOp_Smaller(BinaryOp\Smaller $node) {
- return $this->pInfixOp('Expr_BinaryOp_Smaller', $node->left, ' < ', $node->right);
- }
- public function pExpr_BinaryOp_SmallerOrEqual(BinaryOp\SmallerOrEqual $node) {
- return $this->pInfixOp('Expr_BinaryOp_SmallerOrEqual', $node->left, ' <= ', $node->right);
- }
- public function pExpr_Instanceof(Expr\Instanceof_ $node) {
- return $this->pInfixOp('Expr_Instanceof', $node->expr, ' instanceof ', $node->class);
- }
- // Unary expressions
- public function pExpr_BooleanNot(Expr\BooleanNot $node) {
- return $this->pPrefixOp('Expr_BooleanNot', '!', $node->expr);
- }
- public function pExpr_BitwiseNot(Expr\BitwiseNot $node) {
- return $this->pPrefixOp('Expr_BitwiseNot', '~', $node->expr);
- }
- public function pExpr_UnaryMinus(Expr\UnaryMinus $node) {
- return $this->pPrefixOp('Expr_UnaryMinus', '-', $node->expr);
- }
- public function pExpr_UnaryPlus(Expr\UnaryPlus $node) {
- return $this->pPrefixOp('Expr_UnaryPlus', '+', $node->expr);
- }
- public function pExpr_PreInc(Expr\PreInc $node) {
- return $this->pPrefixOp('Expr_PreInc', '++', $node->var);
- }
- public function pExpr_PreDec(Expr\PreDec $node) {
- return $this->pPrefixOp('Expr_PreDec', '--', $node->var);
- }
- public function pExpr_PostInc(Expr\PostInc $node) {
- return $this->pPostfixOp('Expr_PostInc', $node->var, '++');
- }
- public function pExpr_PostDec(Expr\PostDec $node) {
- return $this->pPostfixOp('Expr_PostDec', $node->var, '--');
- }
- public function pExpr_ErrorSuppress(Expr\ErrorSuppress $node) {
- return $this->pPrefixOp('Expr_ErrorSuppress', '@', $node->expr);
- }
- // Casts
- public function pExpr_Cast_Int(Cast\Int $node) {
- return $this->pPrefixOp('Expr_Cast_Int', '(int) ', $node->expr);
- }
- public function pExpr_Cast_Double(Cast\Double $node) {
- return $this->pPrefixOp('Expr_Cast_Double', '(double) ', $node->expr);
- }
- public function pExpr_Cast_String(Cast\String $node) {
- return $this->pPrefixOp('Expr_Cast_String', '(string) ', $node->expr);
- }
- public function pExpr_Cast_Array(Cast\Array_ $node) {
- return $this->pPrefixOp('Expr_Cast_Array', '(array) ', $node->expr);
- }
- public function pExpr_Cast_Object(Cast\Object $node) {
- return $this->pPrefixOp('Expr_Cast_Object', '(object) ', $node->expr);
- }
- public function pExpr_Cast_Bool(Cast\Bool $node) {
- return $this->pPrefixOp('Expr_Cast_Bool', '(bool) ', $node->expr);
- }
- public function pExpr_Cast_Unset(Cast\Unset_ $node) {
- return $this->pPrefixOp('Expr_Cast_Unset', '(unset) ', $node->expr);
- }
- // Function calls and similar constructs
- public function pExpr_FuncCall(Expr\FuncCall $node) {
- return $this->p($node->name) . '(' . $this->pCommaSeparated($node->args) . ')';
- }
- public function pExpr_MethodCall(Expr\MethodCall $node) {
- return $this->pVarOrNewExpr($node->var) . '->' . $this->pObjectProperty($node->name)
- . '(' . $this->pCommaSeparated($node->args) . ')';
- }
- public function pExpr_StaticCall(Expr\StaticCall $node) {
- return $this->p($node->class) . '::'
- . ($node->name instanceof Expr
- ? ($node->name instanceof Expr\Variable
- || $node->name instanceof Expr\ArrayDimFetch
- ? $this->p($node->name)
- : '{' . $this->p($node->name) . '}')
- : $node->name)
- . '(' . $this->pCommaSeparated($node->args) . ')';
- }
- public function pExpr_Empty(Expr\Empty_ $node) {
- return 'empty(' . $this->p($node->expr) . ')';
- }
- public function pExpr_Isset(Expr\Isset_ $node) {
- return 'isset(' . $this->pCommaSeparated($node->vars) . ')';
- }
- public function pExpr_Print(Expr\Print_ $node) {
- return 'print ' . $this->p($node->expr);
- }
- public function pExpr_Eval(Expr\Eval_ $node) {
- return 'eval(' . $this->p($node->expr) . ')';
- }
- public function pExpr_Include(Expr\Include_ $node) {
- static $map = array(
- Expr\Include_::TYPE_INCLUDE => 'include',
- Expr\Include_::TYPE_INCLUDE_ONCE => 'include_once',
- Expr\Include_::TYPE_REQUIRE => 'require',
- Expr\Include_::TYPE_REQUIRE_ONCE => 'require_once',
- );
- return $map[$node->type] . ' ' . $this->p($node->expr);
- }
- public function pExpr_List(Expr\List_ $node) {
- $pList = array();
- foreach ($node->vars as $var) {
- if (null === $var) {
- $pList[] = '';
- } else {
- $pList[] = $this->p($var);
- }
- }
- return 'list(' . implode(', ', $pList) . ')';
- }
- // Other
- public function pExpr_Variable(Expr\Variable $node) {
- if ($node->name instanceof Expr) {
- return '${' . $this->p($node->name) . '}';
- } else {
- return '$' . $node->name;
- }
- }
- public function pExpr_Array(Expr\Array_ $node) {
- return 'array(' . $this->pCommaSeparated($node->items) . ')';
- }
- public function pExpr_ArrayItem(Expr\ArrayItem $node) {
- return (null !== $node->key ? $this->p($node->key) . ' => ' : '')
- . ($node->byRef ? '&' : '') . $this->p($node->value);
- }
- public function pExpr_ArrayDimFetch(Expr\ArrayDimFetch $node) {
- return $this->pVarOrNewExpr($node->var)
- . '[' . (null !== $node->dim ? $this->p($node->dim) : '') . ']';
- }
- public function pExpr_ConstFetch(Expr\ConstFetch $node) {
- return $this->p($node->name);
- }
- public function pExpr_ClassConstFetch(Expr\ClassConstFetch $node) {
- return $this->p($node->class) . '::' . $node->name;
- }
- public function pExpr_PropertyFetch(Expr\PropertyFetch $node) {
- return $this->pVarOrNewExpr($node->var) . '->' . $this->pObjectProperty($node->name);
- }
- public function pExpr_StaticPropertyFetch(Expr\StaticPropertyFetch $node) {
- return $this->p($node->class) . '::$' . $this->pObjectProperty($node->name);
- }
- public function pExpr_ShellExec(Expr\ShellExec $node) {
- return '`' . $this->pEncapsList($node->parts, '`') . '`';
- }
- public function pExpr_Closure(Expr\Closure $node) {
- return ($node->static ? 'static ' : '')
- . 'function ' . ($node->byRef ? '&' : '')
- . '(' . $this->pCommaSeparated($node->params) . ')'
- . (!empty($node->uses) ? ' use(' . $this->pCommaSeparated($node->uses) . ')': '')
- . ' {' . $this->pStmts($node->stmts) . "\n" . '}';
- }
- public function pExpr_ClosureUse(Expr\ClosureUse $node) {
- return ($node->byRef ? '&' : '') . '$' . $node->var;
- }
- public function pExpr_New(Expr\New_ $node) {
- return 'new ' . $this->p($node->class) . '(' . $this->pCommaSeparated($node->args) . ')';
- }
- public function pExpr_Clone(Expr\Clone_ $node) {
- return 'clone ' . $this->p($node->expr);
- }
- public function pExpr_Ternary(Expr\Ternary $node) {
- // a bit of cheating: we treat the ternary as a binary op where the ?...: part is the operator.
- // this is okay because the part between ? and : never needs parentheses.
- return $this->pInfixOp('Expr_Ternary',
- $node->cond, ' ?' . (null !== $node->if ? ' ' . $this->p($node->if) . ' ' : '') . ': ', $node->else
- );
- }
- public function pExpr_Exit(Expr\Exit_ $node) {
- return 'die' . (null !== $node->expr ? '(' . $this->p($node->expr) . ')' : '');
- }
- public function pExpr_Yield(Expr\Yield_ $node) {
- if ($node->value === null) {
- return 'yield';
- } else {
- // this is a bit ugly, but currently there is no way to detect whether the parentheses are necessary
- return '(yield '
- . ($node->key !== null ? $this->p($node->key) . ' => ' : '')
- . $this->p($node->value)
- . ')';
- }
- }
- // Declarations
- public function pStmt_Namespace(Stmt\Namespace_ $node) {
- if ($this->canUseSemicolonNamespaces) {
- return 'namespace ' . $this->p($node->name) . ';' . "\n" . $this->pStmts($node->stmts, false);
- } else {
- return 'namespace' . (null !== $node->name ? ' ' . $this->p($node->name) : '')
- . ' {' . $this->pStmts($node->stmts) . "\n" . '}';
- }
- }
- public function pStmt_Use(Stmt\Use_ $node) {
- return 'use '
- . ($node->type === Stmt\Use_::TYPE_FUNCTION ? 'function ' : '')
- . ($node->type === Stmt\Use_::TYPE_CONSTANT ? 'const ' : '')
- . $this->pCommaSeparated($node->uses) . ';';
- }
- public function pStmt_UseUse(Stmt\UseUse $node) {
- return $this->p($node->name)
- . ($node->name->getLast() !== $node->alias ? ' as ' . $node->alias : '');
- }
- public function pStmt_Interface(Stmt\Interface_ $node) {
- return 'interface ' . $node->name
- . (!empty($node->extends) ? ' extends ' . $this->pCommaSeparated($node->extends) : '')
- . "\n" . '{' . $this->pStmts($node->stmts) . "\n" . '}';
- }
- public function pStmt_Class(Stmt\Class_ $node) {
- return $this->pModifiers($node->type)
- . 'class ' . $node->name
- . (null !== $node->extends ? ' extends ' . $this->p($node->extends) : '')
- . (!empty($node->implements) ? ' implements ' . $this->pCommaSeparated($node->implements) : '')
- . "\n" . '{' . $this->pStmts($node->stmts) . "\n" . '}';
- }
- public function pStmt_Trait(Stmt\Trait_ $node) {
- return 'trait ' . $node->name
- . "\n" . '{' . $this->pStmts($node->stmts) . "\n" . '}';
- }
- public function pStmt_TraitUse(Stmt\TraitUse $node) {
- return 'use ' . $this->pCommaSeparated($node->traits)
- . (empty($node->adaptations)
- ? ';'
- : ' {' . $this->pStmts($node->adaptations) . "\n" . '}');
- }
- public function pStmt_TraitUseAdaptation_Precedence(Stmt\TraitUseAdaptation\Precedence $node) {
- return $this->p($node->trait) . '::' . $node->method
- . ' insteadof ' . $this->pCommaSeparated($node->insteadof) . ';';
- }
- public function pStmt_TraitUseAdaptation_Alias(Stmt\TraitUseAdaptation\Alias $node) {
- return (null !== $node->trait ? $this->p($node->trait) . '::' : '')
- . $node->method . ' as'
- . (null !== $node->newModifier ? ' ' . rtrim($this->pModifiers($node->newModifier), ' ') : '')
- . (null !== $node->newName ? ' ' . $node->newName : '')
- . ';';
- }
- public function pStmt_Property(Stmt\Property $node) {
- return $this->pModifiers($node->type) . $this->pCommaSeparated($node->props) . ';';
- }
- public function pStmt_PropertyProperty(Stmt\PropertyProperty $node) {
- return '$' . $node->name
- . (null !== $node->default ? ' = ' . $this->p($node->default) : '');
- }
- public function pStmt_ClassMethod(Stmt\ClassMethod $node) {
- return $this->pModifiers($node->type)
- . 'function ' . ($node->byRef ? '&' : '') . $node->name
- . '(' . $this->pCommaSeparated($node->params) . ')'
- . (null !== $node->stmts
- ? "\n" . '{' . $this->pStmts($node->stmts) . "\n" . '}'
- : ';');
- }
- public function pStmt_ClassConst(Stmt\ClassConst $node) {
- return 'const ' . $this->pCommaSeparated($node->consts) . ';';
- }
- public function pStmt_Function(Stmt\Function_ $node) {
- return 'function ' . ($node->byRef ? '&' : '') . $node->name
- . '(' . $this->pCommaSeparated($node->params) . ')'
- . "\n" . '{' . $this->pStmts($node->stmts) . "\n" . '}';
- }
- public function pStmt_Const(Stmt\Const_ $node) {
- return 'const ' . $this->pCommaSeparated($node->consts) . ';';
- }
- public function pStmt_Declare(Stmt\Declare_ $node) {
- return 'declare (' . $this->pCommaSeparated($node->declares) . ') {'
- . $this->pStmts($node->stmts) . "\n" . '}';
- }
- public function pStmt_DeclareDeclare(Stmt\DeclareDeclare $node) {
- return $node->key . ' = ' . $this->p($node->value);
- }
- // Control flow
- public function pStmt_If(Stmt\If_ $node) {
- return 'if (' . $this->p($node->cond) . ') {'
- . $this->pStmts($node->stmts) . "\n" . '}'
- . $this->pImplode($node->elseifs)
- . (null !== $node->else ? $this->p($node->else) : '');
- }
- public function pStmt_ElseIf(Stmt\ElseIf_ $node) {
- return ' elseif (' . $this->p($node->cond) . ') {'
- . $this->pStmts($node->stmts) . "\n" . '}';
- }
- public function pStmt_Else(Stmt\Else_ $node) {
- return ' else {' . $this->pStmts($node->stmts) . "\n" . '}';
- }
- public function pStmt_For(Stmt\For_ $node) {
- return 'for ('
- . $this->pCommaSeparated($node->init) . ';' . (!empty($node->cond) ? ' ' : '')
- . $this->pCommaSeparated($node->cond) . ';' . (!empty($node->loop) ? ' ' : '')
- . $this->pCommaSeparated($node->loop)
- . ') {' . $this->pStmts($node->stmts) . "\n" . '}';
- }
- public function pStmt_Foreach(Stmt\Foreach_ $node) {
- return 'foreach (' . $this->p($node->expr) . ' as '
- . (null !== $node->keyVar ? $this->p($node->keyVar) . ' => ' : '')
- . ($node->byRef ? '&' : '') . $this->p($node->valueVar) . ') {'
- . $this->pStmts($node->stmts) . "\n" . '}';
- }
- public function pStmt_While(Stmt\While_ $node) {
- return 'while (' . $this->p($node->cond) . ') {'
- . $this->pStmts($node->stmts) . "\n" . '}';
- }
- public function pStmt_Do(Stmt\Do_ $node) {
- return 'do {' . $this->pStmts($node->stmts) . "\n"
- . '} while (' . $this->p($node->cond) . ');';
- }
- public function pStmt_Switch(Stmt\Switch_ $node) {
- return 'switch (' . $this->p($node->cond) . ') {'
- . $this->pStmts($node->cases) . "\n" . '}';
- }
- public function pStmt_Case(Stmt\Case_ $node) {
- return (null !== $node->cond ? 'case ' . $this->p($node->cond) : 'default') . ':'
- . $this->pStmts($node->stmts);
- }
- public function pStmt_TryCatch(Stmt\TryCatch $node) {
- return 'try {' . $this->pStmts($node->stmts) . "\n" . '}'
- . $this->pImplode($node->catches)
- . ($node->finallyStmts !== null
- ? ' finally {' . $this->pStmts($node->finallyStmts) . "\n" . '}'
- : '');
- }
- public function pStmt_Catch(Stmt\Catch_ $node) {
- return ' catch (' . $this->p($node->type) . ' $' . $node->var . ') {'
- . $this->pStmts($node->stmts) . "\n" . '}';
- }
- public function pStmt_Break(Stmt\Break_ $node) {
- return 'break' . ($node->num !== null ? ' ' . $this->p($node->num) : '') . ';';
- }
- public function pStmt_Continue(Stmt\Continue_ $node) {
- return 'continue' . ($node->num !== null ? ' ' . $this->p($node->num) : '') . ';';
- }
- public function pStmt_Return(Stmt\Return_ $node) {
- return 'return' . (null !== $node->expr ? ' ' . $this->p($node->expr) : '') . ';';
- }
- public function pStmt_Throw(Stmt\Throw_ $node) {
- return 'throw ' . $this->p($node->expr) . ';';
- }
- public function pStmt_Label(Stmt\Label $node) {
- return $node->name . ':';
- }
- public function pStmt_Goto(Stmt\Goto_ $node) {
- return 'goto ' . $node->name . ';';
- }
- // Other
- public function pStmt_Echo(Stmt\Echo_ $node) {
- return 'echo ' . $this->pCommaSeparated($node->exprs) . ';';
- }
- public function pStmt_Static(Stmt\Static_ $node) {
- return 'static ' . $this->pCommaSeparated($node->vars) . ';';
- }
- public function pStmt_Global(Stmt\Global_ $node) {
- return 'global ' . $this->pCommaSeparated($node->vars) . ';';
- }
- public function pStmt_StaticVar(Stmt\StaticVar $node) {
- return '$' . $node->name
- . (null !== $node->default ? ' = ' . $this->p($node->default) : '');
- }
- public function pStmt_Unset(Stmt\Unset_ $node) {
- return 'unset(' . $this->pCommaSeparated($node->vars) . ');';
- }
- public function pStmt_InlineHTML(Stmt\InlineHTML $node) {
- return '?>' . $this->pNoIndent("\n" . $node->value) . '<?php ';
- }
- public function pStmt_HaltCompiler(Stmt\HaltCompiler $node) {
- return '__halt_compiler();' . $node->remaining;
- }
- // Helpers
- public function pObjectProperty($node) {
- if ($node instanceof Expr) {
- return '{' . $this->p($node) . '}';
- } else {
- return $node;
- }
- }
- public function pModifiers($modifiers) {
- return ($modifiers & Stmt\Class_::MODIFIER_PUBLIC ? 'public ' : '')
- . ($modifiers & Stmt\Class_::MODIFIER_PROTECTED ? 'protected ' : '')
- . ($modifiers & Stmt\Class_::MODIFIER_PRIVATE ? 'private ' : '')
- . ($modifiers & Stmt\Class_::MODIFIER_STATIC ? 'static ' : '')
- . ($modifiers & Stmt\Class_::MODIFIER_ABSTRACT ? 'abstract ' : '')
- . ($modifiers & Stmt\Class_::MODIFIER_FINAL ? 'final ' : '');
- }
- public function pEncapsList(array $encapsList, $quote) {
- $return = '';
- foreach ($encapsList as $element) {
- if (is_string($element)) {
- $return .= addcslashes($element, "\n\r\t\f\v$" . $quote . "\\");
- } else {
- $return .= '{' . $this->p($element) . '}';
- }
- }
- return $return;
- }
- public function pVarOrNewExpr(Node $node) {
- if ($node instanceof Expr\New_) {
- return '(' . $this->p($node) . ')';
- } else {
- return $this->p($node);
- }
- }
- }
|