On Friday, June 8, 2018 at 11:19:54 AM UTC+2, Hrishikesh Joshi wrote: > > Hi Group, > > Does any one how is GWT emulated source gets compiled and used by GWT at > runtime? >
In SuperDevMode, yes. In production mode, quite obviously yes. In legacy DevMode, it depends: java.* (and javax.* ?) aren't, because the JVM prevents it, but other super-sourced code is used, unless it's annotated with @GwtScriptOnly. See “Overriding one package implementation with another” section http://www.gwtproject.org/doc/latest/DevGuideOrganizingProjects.html#DevGuideModuleXml (where "development mode" means "legacy dev mode") -- 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.
