This is an automated email from the ASF dual-hosted git repository.
Cole-Greer pushed a change to branch multi-label-experiment
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
from b88f22ec8f Simplify addV/addLabel/dropLabel grammar visitors
add 43e0336980 Fix multi-label addV codegen in GremlinDslProcessor
add 9ea3df147c Use literal-only grammar for addLabel()/dropLabel() strings
No new revisions were added by this update.
Summary of changes:
.../process/traversal/dsl/GremlinDslProcessor.java | 40 +++++++++++--
.../traversal/dsl/GremlinDslProcessorTest.java | 32 ++++++++++
.../traversal/dsl/AddVMultiLabelDslTraversal.java | 70 ++++++++++++++++++++++
.../grammar/DefaultGremlinBaseVisitor.java | 4 ++
.../language/grammar/GenericLiteralVisitor.java | 14 +++++
.../language/grammar/TraversalMethodVisitor.java | 10 ++--
.../traversal/dsl/graph/GraphTraversal.java | 27 +++------
.../traversal/dsl/graph/GraphTraversalSource.java | 11 +++-
.../Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs | 12 +++-
gremlin-go/driver/cucumber/gremlin.go | 12 +++-
.../gremlin-javascript/test/cucumber/gremlin.js | 12 +++-
gremlin-language/src/main/antlr4/Gremlin.g4 | 8 ++-
.../src/main/python/tests/feature/gremlin.py | 12 +++-
13 files changed, 221 insertions(+), 43 deletions(-)
create mode 100644
gremlin-annotations/src/test/resources/org/apache/tinkerpop/gremlin/process/traversal/dsl/AddVMultiLabelDslTraversal.java