This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a change to branch TINKERPOP-2443
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git.


    from 9f056ec  TINKERPOP-2443 Refactored TypeTranslator
     new 53f86ea  Fixed out of control find/replace in license
     new de4ad41  TINKERPOP-2443 Preserve variables in Gremlin string 
translation

The 2 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:
 CHANGELOG.asciidoc                                 |   2 +
 .../gremlin/process/traversal/Bindings.java        |   5 +-
 .../gremlin/process/traversal/Bytecode.java        |   1 -
 .../gremlin/process/traversal/Translator.java      |   1 +
 .../traversal/translator/PythonTranslator.java     |   8 +-
 .../gremlin/process/traversal/BytecodeTest.java    |  33 +-
 .../traversal/translator/PythonTranslatorTest.java |   4 +-
 .../ast/RepeatASTTransformationCustomizer.groovy   |  51 ++
 .../ast/VarAsBindingASTTransformation.groovy       | 133 +++++
 .../groovy/jsr223/GremlinGroovyScriptEngine.java   |   2 +-
 .../jsr223/GremlinGroovyScriptEngineTest.java      |  52 ++
 gremlin-python/build/generate.groovy               | 120 ++++
 .../gremlin_python/process/graph_traversal.py      |  11 +-
 .../src/main/python/radish/feature_steps.py        |  99 +---
 gremlin-python/src/main/python/radish/gremlin.py   | 649 +++++++++++++++++++++
 gremlin-python/src/main/python/radish/terrain.py   |  22 +-
 .../{tests/test_statics.py => radish/utils.py}     |  35 +-
 .../tests/structure/io/test_graphbinaryV1.py       |  14 +-
 gremlin-test/features/branch/Local.feature         |   6 +-
 gremlin-test/features/branch/Repeat.feature        |   1 -
 gremlin-test/features/filter/Has.feature           |  92 +--
 gremlin-test/features/filter/Is.feature            |   3 +-
 gremlin-test/features/filter/Or.feature            |   3 +-
 gremlin-test/features/filter/Sample.feature        |   1 -
 gremlin-test/features/filter/SimplePath.feature    |   1 -
 gremlin-test/features/map/Graph.feature            |   1 -
 gremlin-test/features/map/Math.feature             |   2 +-
 gremlin-test/features/sideEffect/Sack.feature      |   1 -
 28 files changed, 1125 insertions(+), 228 deletions(-)
 create mode 100644 
gremlin-groovy/src/main/groovy/org/apache/tinkerpop/gremlin/groovy/jsr223/ast/RepeatASTTransformationCustomizer.groovy
 create mode 100644 
gremlin-groovy/src/main/groovy/org/apache/tinkerpop/gremlin/groovy/jsr223/ast/VarAsBindingASTTransformation.groovy
 create mode 100644 gremlin-python/build/generate.groovy
 create mode 100644 gremlin-python/src/main/python/radish/gremlin.py
 copy gremlin-python/src/main/python/{tests/test_statics.py => radish/utils.py} 
(51%)

Reply via email to