On Tue, Aug 11, 2009 at 18:43, costa<[email protected]> wrote: > > I have two modules, module 1 & module 2 with module 2 inheriting > module 1. > > When the code in module 2 gets converted to JavaScript, is gwt > converting only the classes in module 1 used by module 2 or does it > convert everything in module 1?
The GWT compiler will parse all of the code in module 1, but it will only output JavaScript for code that is actually called by module 2. The GWT complier is quite effective at removing code which is never called. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
