Friday, July 1, 2016

Re: Difference betwen dev and production


That is a bug with detailled compilation.

The ofuscated ouput style compilation works ...

If you can create a small project that reproduces the problem with GWT 2.8 beta 1 (or if you are comfortable with it GWT from master branch) then feel free to open a bug for it. The code you have posted looks really broken. When shortening the names its something like

t[1] ?
  t
[0].execute__Z() && (rescheduled = SchedulerImpl_push_JsArray_2(rescheduled, t))
 
:
 
Image$State: Exp $1_$execute_Image$State: Exp $1_2V(t[0]);


The corresponding Java code in SchedulerImpl looks like:

if (t.isRepeating()) {
 
if (t.executeRepeating()) {
    rescheduled
= push(rescheduled, t);
 
}
} else {
  t
.executeScheduled();
}


With "t" being a task scheduled by the Image.State class.

-- J. 

--
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