hi,

in 2.1.1 (release) when writing a generator I noticed that compiler
does not perform type checking for the result, causing the application
to break during runtime. Afair the compiler did that check in 2.0.4
unless I'm mistaken...
--------
sample:

interface A {
 id();
}

class Foo {
  A a = GWT.create(A.class);
}

MyGenerator creates a class:

A_Impl {
}

Compiler is fine with that result, whereas that A_Impl shall be
implementing A? The self-(syntax) validation of A_Impl however, works
fine. But missing type check against expected class.

-- 
http://groups.google.com/group/Google-Web-Toolkit-Contributors

Reply via email to