Does Gwt Reuse Google Closure Compiler, And Why If Not?
Google Web Toolkit (GWT) performs inlining of javascript code, minifying and removing unused code, and some other optimizations which are also done by Google Closure Compiler. So I
Solution 1:
Commit 10778: Closure JS hookup hooks GWT to the closure compiler.
Probably with GWT 2.5, at least behind the scenes, GWT may use the closure compiler.
Update
Closure Support has been removed
Solution 2:
GWT does not currently use Closure Compiler, GWT does the bulk of its optimization while the code is in Java form.
While there are many aspects of CC that are redundant for GWT, there is some interest in using it, however it isn't as simple as simply post processing the GWT output as the default GWT "linker" makes the code opaque to CC.
Post a Comment for "Does Gwt Reuse Google Closure Compiler, And Why If Not?"