cljs.analyzer.api/no-warn

macrosince v0.0-3291Edit
(no-warn & body)

Source docstring:
Disable analyzer warnings for any analysis executed in body.
Source code @ clojurescript:src/main/clojure/cljs/analyzer/api.cljc
(defmacro no-warn
  [& body]
  (let [no-warnings (zipmap (keys ana/*cljs-warnings*) (repeat false))]
    `(binding [ana/*cljs-warnings* ~no-warnings]
       ~@body)))