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

spmallette pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


The following commit(s) were added to refs/heads/master by this push:
     new fa28560  Needed to regenerate gremlin-javascript after DSL support was 
added
fa28560 is described below

commit fa285607ee160c30428ddcb2f7546ed8e9dcd1ec
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Mon May 20 13:52:46 2019 -0400

    Needed to regenerate gremlin-javascript after DSL support was added
    
    I guess the DSL support was merged on tp33 and then to master, but the GLV 
wasn't regenerated for master at the time of that merge CTR
---
 .../main/javascript/gremlin-javascript/lib/process/graph-traversal.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/gremlin-javascript/src/main/javascript/gremlin-javascript/lib/process/graph-traversal.js
 
b/gremlin-javascript/src/main/javascript/gremlin-javascript/lib/process/graph-traversal.js
index c068262..3053f6d 100644
--- 
a/gremlin-javascript/src/main/javascript/gremlin-javascript/lib/process/graph-traversal.js
+++ 
b/gremlin-javascript/src/main/javascript/gremlin-javascript/lib/process/graph-traversal.js
@@ -75,7 +75,7 @@ class GraphTraversalSource {
    */
   with_(...args) {
     const b = new Bytecode(this.bytecode).addSource('with', args);
-    return new GraphTraversalSource(this.graph, new 
TraversalStrategies(this.traversalStrategies), b);
+    return new this.graphTraversalSourceClass(this.graph, new 
TraversalStrategies(this.traversalStrategies), b, 
this.graphTraversalSourceClass, this.graphTraversalClass);
   }
   
   /**
@@ -195,7 +195,7 @@ class GraphTraversalSource {
    */
   io(...args) {
     const b = new Bytecode(this.bytecode).addStep('io', args);
-    return new GraphTraversal(this.graph, new 
TraversalStrategies(this.traversalStrategies), b);
+    return new this.graphTraversalClass(this.graph, new 
TraversalStrategies(this.traversalStrategies), b);
   }
   
 }

Reply via email to