[
https://issues.apache.org/jira/browse/GROOVY-7480?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Paul King updated GROOVY-7480:
------------------------------
Description:
Setting up the resolve strategy to {{Closure.DELEGATE_FIRST}} does not
get the delegate looked up at first. For instance:
{code}
target = 'aTarget'
c = new GroovyShell().evaluate("{ -> leftShift('*') }");
c.resolveStrategy = Closure.DELEGATE_FIRST
c.delegate = target
c.call()
{code}
results in:
{noformat}
groovy.lang.MissingMethodException: No signature of method:
Script1$_run_closure1.doCall() is applicable for argument types:
(java.lang.String) values: [*]
Possible solutions: doCall(), findAll(), findAll(),
isCase(java.lang.Object), isCase(java.lang.Object)
at Script1$_run_closure1.doCall(Script1.groovy:1)
at ConsoleScript33.run(ConsoleScript33:5)
{noformat}
was:
Setting up the resolve strategy to Closure.DELEGATE_FIRST does not
get the delegate looked up at first. For instance:
target = 'aTarget'
c = new GroovyShell().evaluate("{ -> leftShift('*') }");
c.resolveStrategy = Closure.DELEGATE_FIRST
c.delegate = target
c.call()
results in
groovy.lang.MissingMethodException: No signature of method:
Script1$_run_closure1.doCall() is applicable for argument types:
(java.lang.String) values: [*]
Possible solutions: doCall(), findAll(), findAll(),
isCase(java.lang.Object), isCase(java.lang.Object)
at Script1$_run_closure1.doCall(Script1.groovy:1)
at ConsoleScript33.run(ConsoleScript33:5)
> ClosureMetaClass wrong routing calls logic
> ------------------------------------------
>
> Key: GROOVY-7480
> URL: https://issues.apache.org/jira/browse/GROOVY-7480
> Project: Groovy
> Issue Type: Bug
> Components: groovy-runtime
> Affects Versions: 2.4.2
> Reporter: Paolo Piersanti
> Priority: Major
>
> Setting up the resolve strategy to {{Closure.DELEGATE_FIRST}} does not
> get the delegate looked up at first. For instance:
> {code}
> target = 'aTarget'
> c = new GroovyShell().evaluate("{ -> leftShift('*') }");
> c.resolveStrategy = Closure.DELEGATE_FIRST
> c.delegate = target
> c.call()
> {code}
> results in:
> {noformat}
> groovy.lang.MissingMethodException: No signature of method:
> Script1$_run_closure1.doCall() is applicable for argument types:
> (java.lang.String) values: [*]
> Possible solutions: doCall(), findAll(), findAll(),
> isCase(java.lang.Object), isCase(java.lang.Object)
> at Script1$_run_closure1.doCall(Script1.groovy:1)
> at ConsoleScript33.run(ConsoleScript33:5)
> {noformat}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)