GWT Code Separation?

I get one confusion when splitting code. GWT creates a javascript file for each GWT.runasync. If not how the separation is performed, i.e. How does it group multiple code contents from void success from GWT.runasync into a javascript file ??

+5
source share
1 answer

GWT compiler generates a different permutation file for each instancerunAsync()

Permutations are also created for each language, user agent, etc., so if your application calls runAsync()twice, targets six user agents and localizes in 10 languages, you will have 180 permutations:

(initial + 2 split chunks) * 6 user agents * 10 languages

GWT cache.html.

, JS Firefox . " 2" Safari .

+4

All Articles