Current babel spec requires a function argument in the case of transducers, such as (filter odd?). However, Clojure allows any argument: (filter 5) is valid Clojure code.
If we are to be consistent with Clojure and with issue #76 , we need to allow this case in :one-arg part of the spec for functions that allow transducers.
Current babel spec requires a function argument in the case of transducers, such as
(filter odd?). However, Clojure allows any argument:(filter 5)is valid Clojure code.If we are to be consistent with Clojure and with issue #76 , we need to allow this case in
:one-argpart of the spec for functions that allow transducers.