ClojureScript 1.10.238版本中,如果你在一个使用{{cljs.spec.test.alpha/instrument}}进行instrumented的函数上调用{{.apply}}并且参数超过21个,将得到一个关于无效参数个数(arity)的错误。ClojureScript 1.9.954版本中没有这个问题。
`
(require '[cljs.spec.alpha :as s] '[cljs.spec.test.alpha :as stest])
(defn my-fun [& args] (prn :args args))
(s/fdef my-fun :args (s/cat :args (s/* any?)))
(.apply my-fun nil (into-array (range 22)))
;; :args (0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21)
(stest/instrument)
(.apply my-fun nil (into-array (range 22)))
;; 错误:Invalid arity: 22
;; 在Function.G__10112 [as call] (.../cljs/core.js:6798:7)
;; 在Function.cljs.core.MetaFn.apply (.../cljs/core.js:6829:24)
;; 在repl:1:96
`
常规{{apply}}函数按预期工作。