简体   繁体   中英

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 was wondering if Closure Compiler is in fact utilized in GWT or do they have two separate implementations? If so, then what is the restriction/reasoning for not reusing Google Closure Compiler in GWT?

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

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM