cljs.analyzer.api/analyze

functionsince v0.0-3208Edit
(analyze env form)
(analyze env form name)
(analyze env form name opts)
(analyze state env form name opts)

Source docstring:
Given an environment, a map containing {:locals (mapping of names to bindings), :context
  (one of :statement, :expr, :return), :ns (a symbol naming the
  compilation ns)}, and form, returns an expression object (a map
  containing at least :form, :op and :env keys). If expr has any (immediately)
  nested exprs, must have :children entry. This must be a vector of keywords naming
  the immediately nested fields mapped to an expr or vector of exprs. This will
  facilitate code walking without knowing the details of the op set.
Source code @ clojurescript:src/main/clojure/cljs/analyzer/api.cljc
   (defn analyze
     ([env form] (analyze env form nil))
     ([env form name] (analyze env form name nil))
     ([env form name opts]
      (analyze (or (current-state) (empty-state opts)) env form name opts))
     ([state env form name opts]
      (env/with-compiler-env state
        (binding [ana/*cljs-warning-handlers* (:warning-handlers opts ana/*cljs-warning-handlers*)]
          (ana/analyze env form name opts)))))