cljs.spec.test/instrumentable-syms

MOVED, please see cljs.spec.test.alpha/instrumentable-syms
functionremoved v1.9.542added v1.9.183Edit
(instrumentable-syms)
(instrumentable-syms opts)

Source docstring:
Given an opts map as per instrument, returns the set of syms
that can be instrumented.
Source code @ clojurescript:src/main/cljs/cljs/spec/test.cljs
(defn instrumentable-syms
  ([] (instrumentable-syms nil))
  ([opts]
   (assert (every? ident? (keys (:gen opts))) "instrument :gen expects ident keys")
   (reduce into #{} [(filter fn-spec-name? (keys (s/registry)))
                     (keys (:spec opts))
                     (:stub opts)
                     (keys (:replace opts))])))