Skip to content

Commit

Permalink
Release 8.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thekid committed Jul 15, 2023
1 parent d97850c commit e2d056a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ XP Compiler ChangeLog

## ?.?.? / ????-??-??

## 8.14.0 / 2023-07-15

* Fixed error *Cannot access offset of type array on array* when using
reflection for non-constant parameter defaults
(@thekid)
* Implemented feature #162: Arbitrary static variable initializers, see
https://wiki.php.net/rfc/arbitrary_static_variable_initializers
(@thekid)
Expand Down
8 changes: 4 additions & 4 deletions src/main/php/lang/ast/emit/PHP82.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
*/
class PHP82 extends PHP {
use
RewriteBlockLambdaExpressions,
RewriteDynamicClassConstants,
RewriteStaticVariableInitializations,
ReadonlyClasses,
RewriteBlockLambdaExpressions,
RewriteDynamicClassConstants,
RewriteStaticVariableInitializations,
ReadonlyClasses,
OmitConstantTypes
;

Expand Down

0 comments on commit e2d056a

Please sign in to comment.