[ 
https://issues.apache.org/jira/browse/TINKERPOP-2474?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Stephen Mallette updated TINKERPOP-2474:
----------------------------------------
    Description: 
There is a bunch of hackery to generate:

{code}
g.withSack((java.util.function.Supplier) {1.0d}, 
(java.util.function.UnaryOperator) {it + 1}).
  V().sack()
{code}

It would be nice if that was just:

{code}
g.withSack({1.0d}, {it + 1}).V().sack()
{code}

in earlier version we get this:

{code}
gremlin> g.withSack(1.0d, {it + 1}).V().sack()
Ambiguous method overloading for method 
org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversalSource#withSack.
Cannot resolve which method to invoke for [class java.lang.Double, class 
groovysh_evaluate$_run_closure1] due to overlapping prototypes between:
        [class java.lang.Object, interface java.util.function.BinaryOperator]
        [class java.lang.Object, interface java.util.function.UnaryOperator]
Type ':help' or ':h' for help.
Display stack trace? [yN]n
{code}

  was:
There is a bunch of hackery to generate:

{code}
g.withSack((java.util.function.Supplier) {1.0d}, 
(java.util.function.UnaryOperator) {it + 1}).
  V().sack()
{code}

It would be nice if that was just:

{code}
g.withSack({1.0d}, {it + 1}).V().sack()
{code}


> withSack() Groovy translation output could be simplified
> --------------------------------------------------------
>
>                 Key: TINKERPOP-2474
>                 URL: https://issues.apache.org/jira/browse/TINKERPOP-2474
>             Project: TinkerPop
>          Issue Type: Improvement
>          Components: groovy
>    Affects Versions: 3.4.8
>            Reporter: Stephen Mallette
>            Assignee: Stephen Mallette
>            Priority: Major
>
> There is a bunch of hackery to generate:
> {code}
> g.withSack((java.util.function.Supplier) {1.0d}, 
> (java.util.function.UnaryOperator) {it + 1}).
>   V().sack()
> {code}
> It would be nice if that was just:
> {code}
> g.withSack({1.0d}, {it + 1}).V().sack()
> {code}
> in earlier version we get this:
> {code}
> gremlin> g.withSack(1.0d, {it + 1}).V().sack()
> Ambiguous method overloading for method 
> org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversalSource#withSack.
> Cannot resolve which method to invoke for [class java.lang.Double, class 
> groovysh_evaluate$_run_closure1] due to overlapping prototypes between:
>       [class java.lang.Object, interface java.util.function.BinaryOperator]
>       [class java.lang.Object, interface java.util.function.UnaryOperator]
> Type ':help' or ':h' for help.
> Display stack trace? [yN]n
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to