I am new to Closure Compiler and when I compile a library I have to work with, a line like this intrigues me:
[jscomp] Compiling 197 file(s) with 41 extern(s)
I'd say some common Web variables like document
and window
are in, but do I have a way to see this list? java -jar compiler.jar --help
didn't give me a hint to such an option. That option should output a list like the following:
- document (from gecko_dom.js)
- window (from gecko_dom.js)
- ...
with a total of exactly 41 items. The "(from..." is optional but of course good to have.