Github user spmallette commented on a diff in the pull request:
https://github.com/apache/tinkerpop/pull/823#discussion_r176567525
--- Diff:
gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/CommonSteps.cs ---
@@ -239,7 +240,8 @@ private static object ToLambda(string stringLambda,
string graphName)
private static object ToT(string enumName, string graphName)
--- End diff --
It's not really useful to this conversion, but it's the expected signature
for the lambda where this method is used. See further up in the definition of
`Parsers` where it requires a `Func<string,string,object>` a two arg function
basically. maybe we could make that nicer, but this is all plumbing code for
tests, so perhaps not a big issue?
---