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
                        [email protected]::booleanValue() != null);
    }-*/;


It throws:

[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 [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Reply via email to