diff --git a/ChangeLog.md b/ChangeLog.md index 65516620..6610c844 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -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) diff --git a/src/main/php/lang/ast/emit/PHP82.class.php b/src/main/php/lang/ast/emit/PHP82.class.php index 754306f1..5e508762 100755 --- a/src/main/php/lang/ast/emit/PHP82.class.php +++ b/src/main/php/lang/ast/emit/PHP82.class.php @@ -20,10 +20,10 @@ */ class PHP82 extends PHP { use - RewriteBlockLambdaExpressions, - RewriteDynamicClassConstants, - RewriteStaticVariableInitializations, - ReadonlyClasses, + RewriteBlockLambdaExpressions, + RewriteDynamicClassConstants, + RewriteStaticVariableInitializations, + ReadonlyClasses, OmitConstantTypes ;