Releases: xp-framework/ast
Releases · xp-framework/ast
11.7.0: Clone with
- Merged PR #56: Implement "clone with" syntax using a
CloneExpression
node, see https://wiki.php.net/rfc/clone_with_v2
(@thekid)
11.6.0: Pipeline operator
- Merged PR #52: Add syntactical support for pipelines with
|>
and?|>
,
see https://wiki.php.net/rfc/pipe-operator-v3
(@thekid)
11.5.0: Final properties
- Added syntactic support for
final
promoted parameters, see this RFC:
https://wiki.php.net/rfc/final_promotion
(@thekid)
11.4.0: Heredoc
11.3.1: Backtick operator
- Fixed strings enclosed in backticks - @thekid
11.3.0: Asymmetric visibility
- Merged PR #54: Add syntactic support for asymmetric visibility, see
https://wiki.php.net/rfc/asymmetric-visibility-v2, targeted for PHP 8.4
(@thekid)
11.2.1: Grouped imports fix
- Fixed grouped
use
statements containing aliases not scoped correctly
(@thekid)
11.2.0: Generic type support
11.1.0: Property hooks
11.0.1: Modulo fix
- Fixed
%=
(modulo-assignment) operator - @thekid