Add operator precedence for list() assignments

This commit is contained in:
nikic 2011-10-16 14:44:39 +02:00
parent 7f82d20cca
commit 43f9c37c7f

View File

@ -54,6 +54,7 @@ abstract class PHPParser_PrettyPrinterAbstract
'Expr_AssignBitwiseXor' => 15, 'Expr_AssignBitwiseXor' => 15,
'Expr_AssignShiftLeft' => 15, 'Expr_AssignShiftLeft' => 15,
'Expr_AssignShiftRight' => 15, 'Expr_AssignShiftRight' => 15,
'Expr_List' => 15,
'Expr_LogicalAnd' => 16, 'Expr_LogicalAnd' => 16,
'Expr_LogicalXor' => 17, 'Expr_LogicalXor' => 17,
'Expr_LogicalOr' => 18, 'Expr_LogicalOr' => 18,