You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Yuki Goto (JIRA)" <ji...@apache.org> on 2016/02/17 13:55:18 UTC

[jira] [Created] (GROOVY-7758) GroovyCastException when both @CompileStatic and @Newify are used

Yuki Goto created GROOVY-7758:
---------------------------------

             Summary: GroovyCastException when both @CompileStatic and @Newify are used
                 Key: GROOVY-7758
                 URL: https://issues.apache.org/jira/browse/GROOVY-7758
             Project: Groovy
          Issue Type: Bug
          Components: groovy-jdk
    Affects Versions: 2.4.5
            Reporter: Yuki Goto


The code below gives {{GroovyCastException}}.
{code}
class Main {
  public static void main(String... args) {
    Test test = new Test()
  }
}

@CompileStatic @Newify
class Test {
  private HashMap<String, A> hashMap = [:]
  public Test() {
    set()
    test()
  }
  public void test() {
    hashMap.each() { String string, A a ->
      a.printString()
    }
  }
  public void set() {
    hashMap.put("aaa", B.new("xxx"))
    hashMap.put("bbb", B.new("yyy"))
  }
}

class A {
  public String string = ""
  public void printString() {
    println(string)
  }
}

class B extends A {
  public B(String string) {
    this.string = string
  }
}
{code}
The code blow is a part of the decompiled {{Test.class}}. Groovy trys to cast {{this}} instead of {{a}}.
{code}
public Object doCall(String string, A a) {
  ((A)ScriptBytecodeAdapter.castToType(((_test_closure1)this).getThisObject(), A.class)).printString();
  return null;
}
{code}
When {{@CompileStatic}} is omitted, or when {{@Newify}} is omitted and {{B.new}} is replaced by {{new B}}, the code above gives no exception and runs as expected.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)