This is an automated email from the ASF dual-hosted git repository.
henrib pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jexl.git
from 14fce3a6 Bump org.apache.commons:commons-parent from 104 to 105.
add 2b997c1d Resolve record component accessors in property access
add ded79221 [JEXL-472] Consolidate record reflection into ClassTool, fix
test fixture
add 390d2043 JEXL-472: Consolidate record reflection into ClassTool, fix
test fixture
add 823d4e7c JEXL-472: fix review comments;
add bdeb80c2 JEXL-472: fix review comments;
add b45ab239 JEXL-472: ClassCreatorTest fails on java 28 (GC does not
reclaim classes?), fix by avoidance;
new 07ca868b Merge pull request #416 from apache/JEXL-472
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.gitignore | 1 +
src/changes/changes.xml | 9 +-
.../org/apache/commons/jexl3/JexlFeatures.java | 4 +-
.../java/org/apache/commons/jexl3/JexlOptions.java | 4 +-
.../jexl3/internal/introspection/ClassTool.java | 84 ++++++++++++++--
.../internal/introspection/RecordGetExecutor.java | 100 +++++++++++++++++++
.../jexl3/internal/introspection/Uberspect.java | 4 +
.../org/apache/commons/jexl3/ClassCreatorTest.java | 3 +
.../org/apache/commons/jexl3/JexlTestCase.java | 5 +
.../commons/jexl3/RecordPropertyAccessTest.java | 109 +++++++++++++++++++++
10 files changed, 308 insertions(+), 15 deletions(-)
create mode 100644
src/main/java/org/apache/commons/jexl3/internal/introspection/RecordGetExecutor.java
create mode 100644
src/test/java/org/apache/commons/jexl3/RecordPropertyAccessTest.java