kenhuuu commented on code in PR #3309:
URL: https://github.com/apache/tinkerpop/pull/3309#discussion_r2875131330


##########
gremlin-dotnet/src/Gremlin.Net/Process/Traversal/GraphTraversalSource.cs:
##########
@@ -48,37 +48,37 @@ public class GraphTraversalSource
         public ICollection<ITraversalStrategy> TraversalStrategies { get; set; 
}
 
         /// <summary>
-        ///     Gets or sets the <see cref="Traversal.Bytecode" /> associated 
with the current state of this graph traversal
+        ///     Gets or sets the <see cref="Traversal.GremlinLang" /> 
associated with the current state of this graph traversal
         ///     source.
         /// </summary>
-        public Bytecode Bytecode { get; set; }
+        public GremlinLang GremlinLang { get; set; }
 
         /// <summary>
         ///     Initializes a new instance of the <see 
cref="GraphTraversalSource" /> class.
         /// </summary>
         public GraphTraversalSource()
-            : this(new List<ITraversalStrategy>(), new Bytecode())
+            : this(new List<ITraversalStrategy>(), new GremlinLang())
         {
         }
 
         /// <summary>
         ///     Initializes a new instance of the <see 
cref="GraphTraversalSource" /> class.
         /// </summary>
         /// <param name="traversalStrategies">The traversal strategies 
associated with this graph traversal source.</param>
-        /// <param name="bytecode">
-        ///     The <see cref="Traversal.Bytecode" /> associated with the 
current state of this graph traversal
+        /// <param name="gremlinLang">
+        ///     The <see cref="Traversal.GremlinLang" /> associated with the 
current state of this graph traversal
         ///     source.
         /// </param>
-        public GraphTraversalSource(ICollection<ITraversalStrategy> 
traversalStrategies, Bytecode bytecode)
+        public GraphTraversalSource(ICollection<ITraversalStrategy> 
traversalStrategies, GremlinLang gremlinLang)
         {
             TraversalStrategies = traversalStrategies;
-            Bytecode = bytecode;
+            GremlinLang = gremlinLang;
         }
 
-        public GraphTraversalSource(ICollection<ITraversalStrategy> 
traversalStrategies, Bytecode bytecode,
-            IRemoteConnection connection)
+        public GraphTraversalSource(ICollection<ITraversalStrategy> 
traversalStrategies,
+            GremlinLang gremlinLang, IRemoteConnection connection)

Review Comment:
   Nit: why did the format change here? Previously ByteCode was on line 78 but 
GremlinLang was added to 79



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to