hi there,
my gwt app it getting pretty big, so i looked into code splitting - but it looks like magic to me in non trivial cases.
i have about 20 gwt modules, and all entry points implement an abstract entry point:
public void onModuleLoad() {
try {
initModule();
} catch (Throwable t) {
ErrorHandling.handleEverything(t);
}
}
if i put gwt.runasync around "initModule", will every module be compiled into its own js source file? if not, how can i achieve that? so i have to change every implementation of "initmodule"?