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

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


The following commit(s) were added to refs/heads/TINKERPOP-3178 by this push:
     new e9f187e9cf wip
e9f187e9cf is described below

commit e9f187e9cfa70845a4fff26e391c9e002d0d5d5b
Author: Stephen Mallette <[email protected]>
AuthorDate: Tue Jul 29 12:37:45 2025 -0400

    wip
---
 .../gremlin/process/traversal/step/branch/BranchStep.java    | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git 
a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/branch/BranchStep.java
 
b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/branch/BranchStep.java
index 75002ee2bd..a252f28ba1 100644
--- 
a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/branch/BranchStep.java
+++ 
b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/branch/BranchStep.java
@@ -89,6 +89,18 @@ public class BranchStep<S, E, M> extends 
ComputerAwareStep<S, E> implements Trav
         this.integrateChild(traversalOption);
     }
 
+    public List<Pair<Traversal.Admin<M, ?>, Traversal.Admin<S, E>>> 
getTraversalOptions() {
+        return traversalOptions;
+    }
+
+    public Map<Pick, List<Traversal.Admin<S, E>>> getTraversalPickOptions() {
+        return traversalPickOptions;
+    }
+
+    public Traversal.Admin<S, M> getBranchTraversal() {
+        return branchTraversal;
+    }
+
     @Override
     public Set<TraverserRequirement> getRequirements() {
         return this.getSelfAndChildRequirements();

Reply via email to