mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-11-26 20:14:46 +01:00
Update changelog
This commit is contained in:
parent
cdbad02fb2
commit
9f0e12bfca
15
CHANGELOG.md
15
CHANGELOG.md
@ -1,6 +1,7 @@
|
||||
Version 0.9.3-dev
|
||||
-----------------
|
||||
|
||||
|
||||
* [BC] As `list()` in `foreach` is now supported the structure of list assignments changed:
|
||||
|
||||
1. There is no longer a dedicated `AssignList` node; instead a normal `Assign` node is used with a `List` as `var`.
|
||||
@ -8,6 +9,8 @@ Version 0.9.3-dev
|
||||
|
||||
* [BC] As arbitrary expressions are allowed in `empty()` now its subnode was renamed from `var` to `expr`.
|
||||
|
||||
* [BC] The protected `pSafe()` method in `PrettyPrinterAbstract` was renamed to `pNoIndent()`.
|
||||
|
||||
* [PHP 5.5] Add support for arbitrary expressions in `empty()`.
|
||||
|
||||
* [PHP 5.5] Add support for constant array / string dereferencing.
|
||||
@ -22,8 +25,20 @@ Version 0.9.3-dev
|
||||
* [PHP 5.5] Add support for `list()` destructuring of `foreach` values.
|
||||
Example: `foreach ($coords as list($x, $y)) { ... }`
|
||||
|
||||
* Improve pretty printing of expressions by printing less unnecessary parentheses. In particular concatenations are now
|
||||
printed as `$a . $b . $c . $d . $e` rather than `$a . ($b . ($c . ($d . $e)))`. This is implemented by taking operator
|
||||
associativity into account. New protected methods added to the pretty printer are `pPrec()`, `pInfixOp()`,
|
||||
`pPrefixOp()` and `pPostfixOp()`. This also fixes an issue with extraneous parentheses in closure bodies.
|
||||
|
||||
* Fix formatting of fall-through `case` statements in the Zend pretty printer.
|
||||
|
||||
* Fix parsing of `$foo =& new Bar`. It is now properly parsed as `AssignRef` (instead of `Assign`).
|
||||
|
||||
* Fix assignment of `$endAttributes`. Sometimes the attributes of the token right after the node were assigned, rather
|
||||
than the attributes of the last token in the node.
|
||||
|
||||
* `rebuildParser.php` is now designed to be run from the command line rather than from the browser.
|
||||
|
||||
Version 0.9.2 (07.07.2012)
|
||||
--------------------------
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user