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 3188a279 The Moditect plugin is now invoked through the parent POM
     add ca8dd7bf JEXL-418: initial drop;
     add 51ad527d JEXL-418: fixing reserved names, preparing for feature flag;
     add 45a71f4f JEXL-418: improve try-with-resources handling; add throw 
handling; more tests;
     add fe3aa70c JEXL-418: fix try-with-resources grammar; more tests;
     add 958b168f JEXL-418: fix try-catch-finally debugger handling; more tests;
     add 01310b5e JEXL-418: initial drop;
     add d2d2ff57 JEXL-418: fixing reserved names, preparing for feature flag;
     add 6fb7c7b1 Merge pull request #229 from apache/master
     add 67fbd237 JEXL-418: improve try-with-resources handling; add throw 
handling; more tests;
     add 90e421d3 JEXL-418: fix try-with-resources grammar; more tests;
     add d0454344 JEXL-418: fix try-catch-finally debugger handling; more tests;
     add b255c771 Merge remote-tracking branch 'origin/JEXL-418' into JEXL-418
     add 5ea88854 JEXL-418: cleaning debug output; - tidy code;
     add 30857115 JEXL-418: javadoc fix;
     add ecabdcab JEXL-418: doc fix; - syntax update and test;
     new b7f72016 Merge pull request #228 from apache/JEXL-418

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:
 RELEASE-NOTES.txt                                  |   1 +
 src/changes/changes.xml                            |   3 +
 .../org/apache/commons/jexl3/JexlArithmetic.java   |  18 +-
 .../org/apache/commons/jexl3/JexlException.java    |  30 +++
 .../org/apache/commons/jexl3/JexlFeatures.java     |   4 +-
 .../apache/commons/jexl3/internal/Debugger.java    | 138 ++++-------
 .../apache/commons/jexl3/internal/Interpreter.java | 240 ++++++++++++--------
 .../commons/jexl3/internal/InterpreterBase.java    |  12 +
 .../commons/jexl3/internal/ScriptVisitor.java      | 103 ++-------
 .../parser/{ASTVar.java => ASTTryResources.java}   |  11 +-
 ...alifiedIdentifier.java => ASTTryStatement.java} |  35 +--
 .../commons/jexl3/parser/FeatureController.java    |   8 +
 .../org/apache/commons/jexl3/parser/Parser.jjt     |  65 +++++-
 .../apache/commons/jexl3/parser/ParserVisitor.java |   6 +
 src/site/xdoc/reference/syntax.xml                 | 118 +++++++++-
 .../org/apache/commons/jexl3/FeaturesTest.java     |   2 +-
 .../org/apache/commons/jexl3/Issues400Test.java    |  21 ++
 .../java/org/apache/commons/jexl3/LexicalTest.java |   4 +-
 .../apache/commons/jexl3/TryCatchFinallyTest.java  | 251 +++++++++++++++++++++
 19 files changed, 764 insertions(+), 306 deletions(-)
 copy src/main/java/org/apache/commons/jexl3/parser/{ASTVar.java => 
ASTTryResources.java} (84%)
 copy 
src/main/java/org/apache/commons/jexl3/parser/{ASTQualifiedIdentifier.java => 
ASTTryStatement.java} (68%)
 create mode 100644 
src/test/java/org/apache/commons/jexl3/TryCatchFinallyTest.java

Reply via email to