I also meant to mention that there are a ton of knobs on the closure compiler that are not exposed by the ClojureScript compiler. This is something I'd like to improve (or see improved) at some point, but it's a tricky problem, due to the vast number of options [1]. I expect the only way to really expose them all would be to add a hook where user code could set the options object before compiling.
It does look like there is an option that *might* disable the warnings you're seeing: DiagnosticGroups.EXTERNS_VALIDATION [2]. I haven't tested this, so I'm not sure if it would quiet down the "X has no effect" messages or not. At any rate, there's no easy way to tweak this setting with ClojureScript. [1] http://code.google.com/p/closure-compiler/source/browse/trunk/src/com/google/javascript/jscomp/CompilerOptions.java [2] http://code.google.com/p/closure-compiler/wiki/Warnings -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en
