Testing gwt-rc1 (actually latest git)
The code is found in gwt-d3 and prevents my project from building.
/**
* @return true if the value is a Javascript boolean value, a Javascript Boolean object or a Java {@link Boolean}
* instance.
*/
public final native boolean isBoolean()/*-{
return typeof (this.datum) === "boolean"
|| this.datum instanceof Boolean
|| (this.datum != null && this.datum
.@java.lang.Boolean::booleanValue() != null);
}-*/;
[ERROR] Line 249: Method 'boolean Boolean.booleanValue()' is implemented by devirtualized type 'Boolean' JSO and can only be used in calls within a JSNI method body.
The method isBoolean is hosted in a class extending javascriptObject.
But the thing is already in a jsni body!!! Any ideas?
--
Vassilis Virvilis
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.
No comments:
Post a Comment