From e2d056ac73dace878436f3a860e59e5de29146b1 Mon Sep 17 00:00:00 2001 From: Timm Friebe Date: Sat, 15 Jul 2023 11:50:58 +0200 Subject: [PATCH] Release 8.14.0 --- ChangeLog.md | 5 +++++ src/main/php/lang/ast/emit/PHP82.class.php | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) 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 ;