Friday, May 21, 2010

Re: difference between hosted mode and development mode

On 21 mai, 17:31, KeremTiryaki <keremtiry...@gmail.com> wrote:
> and I want to add something...
> Development mode doesn't care about optimization, It is showing the
> results as quick as possible

Actually, dev mode runs Java whereas prod mode compiles to JavaScript.
This means that un dev mode you're using the true java.lang.String or
java.util.ArrayList for instance, whereas in prod mode it's the
emulated version that's being used. It sometimes lead to different
results (Java's Date is quite not the same as JavaScript's one)

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

No comments:

Post a Comment