I think I had this problem, and it was inside this class:
public class FlickrActivityEvent extends JavaScriptObject
{
protected FlickrActivityEvent() {}
public final native String getType() /*-{ return this.["type"]; }-
*/;
public final native String getUser() /*-{ return this.user; }-*/;
public final native String getUsername() /*-{ return
this.username; }-*/;
public final native String getContent() /*-{ return
this._content; }-*/;
}
the problem was the this.["type"]
I removed the period and it worked
On Nov 19, 1:18 pm, Scott Blum <[email protected]> wrote:
> @Matt: IIRC you are hittnig this because you have a parse error in one of
> your JSNI methods. Either apply my patch and try it again, or else binary
> search for the offending method by commenting hafl of them out at a time.
> The good news is the error will likely repro in hosted mode, so it
> shouldn't take too long.
--
http://groups.google.com/group/Google-Web-Toolkit-Contributors