|
38 | 38 | (:require clojure.walk
|
39 | 39 | clojure.set
|
40 | 40 | cljs.compiler
|
| 41 | + [cljs.util :as util] |
41 | 42 | [cljs.env :as env])
|
42 | 43 | (:import [java.io File]))
|
43 | 44 |
|
|
74 | 75 |
|
75 | 76 | (import-macros clojure.core
|
76 | 77 | [-> ->> .. assert comment cond
|
77 |
| - declare defn defn- |
| 78 | + declare defn- |
78 | 79 | doto
|
79 | 80 | extend-protocol fn for
|
80 | 81 | if-let if-not letfn
|
|
83 | 84 | cond-> cond->> as-> some-> some->>
|
84 | 85 | if-some when-some])
|
85 | 86 |
|
| 87 | +(defn- ^{:dynamic true} assert-valid-fdecl |
| 88 | + "A good fdecl looks like (([a] ...) ([a b] ...)) near the end of defn." |
| 89 | + [fdecl] |
| 90 | + (when (empty? fdecl) (throw (IllegalArgumentException. |
| 91 | + "Parameter declaration missing"))) |
| 92 | + (core/let [argdecls (map |
| 93 | + #(if (seq? %) |
| 94 | + (first %) |
| 95 | + (throw (IllegalArgumentException. |
| 96 | + (if (seq? (first fdecl)) |
| 97 | + (core/str "Invalid signature \"" |
| 98 | + % |
| 99 | + "\" should be a list") |
| 100 | + (core/str "Parameter declaration \"" |
| 101 | + % |
| 102 | + "\" should be a vector"))))) |
| 103 | + fdecl) |
| 104 | + bad-args (seq (remove #(vector? %) argdecls))] |
| 105 | + (when bad-args |
| 106 | + (throw (IllegalArgumentException. |
| 107 | + (core/str "Parameter declaration \"" (first bad-args) |
| 108 | + "\" should be a vector")))))) |
| 109 | + |
| 110 | +(def |
| 111 | + ^{:private true} |
| 112 | + sigs |
| 113 | + (fn [fdecl] |
| 114 | + (assert-valid-fdecl fdecl) |
| 115 | + (core/let [asig |
| 116 | + (fn [fdecl] |
| 117 | + (core/let [arglist (first fdecl) |
| 118 | + ;elide implicit macro args |
| 119 | + arglist (if (clojure.lang.Util/equals '&form (first arglist)) |
| 120 | + (clojure.lang.RT/subvec arglist 2 (clojure.lang.RT/count arglist)) |
| 121 | + arglist) |
| 122 | + body (next fdecl)] |
| 123 | + (if (map? (first body)) |
| 124 | + (if (next body) |
| 125 | + (with-meta arglist (conj (if (meta arglist) (meta arglist) {}) (first body))) |
| 126 | + arglist) |
| 127 | + arglist)))] |
| 128 | + (if (seq? (first fdecl)) |
| 129 | + (core/loop [ret [] fdecls fdecl] |
| 130 | + (if fdecls |
| 131 | + (recur (conj ret (asig (first fdecls))) (next fdecls)) |
| 132 | + (seq ret))) |
| 133 | + (core/list (asig fdecl)))))) |
| 134 | + |
86 | 135 | (defmacro defonce [x init]
|
87 | 136 | `(when-not (exists? ~x)
|
88 | 137 | (def ~x ~init)))
|
|
95 | 144 | (when more
|
96 | 145 | (list* `assert-args fnname more)))))
|
97 | 146 |
|
98 |
| -(defn destructure [bindings] |
| 147 | +(core/defn destructure [bindings] |
99 | 148 | (core/let [bents (partition 2 bindings)
|
100 | 149 | pb (fn pb [bvec b v]
|
101 | 150 | (core/let [pvec
|
|
227 | 276 | (apply core/str))]
|
228 | 277 | (list* 'js* (core/str "[" strs "].join('')") xs)))
|
229 | 278 |
|
230 |
| -(defn bool-expr [e] |
| 279 | +(defn- bool-expr [e] |
231 | 280 | (vary-meta e assoc :tag 'boolean))
|
232 | 281 |
|
233 |
| -(defn simple-test-expr? [env ast] |
| 282 | +(defn- simple-test-expr? [env ast] |
234 | 283 | (core/and
|
235 | 284 | (#{:var :invoke :constant :dot :js} (:op ast))
|
236 | 285 | ('#{boolean seq} (cljs.analyzer/infer-tag env ast))))
|
|
607 | 656 |
|
608 | 657 | ;;; end of reducers macros
|
609 | 658 |
|
610 |
| -(defn protocol-prefix [psym] |
| 659 | +(defn- protocol-prefix [psym] |
611 | 660 | (core/str (-> (core/str psym) (.replace \. \$) (.replace \/ \$)) "$"))
|
612 | 661 |
|
613 | 662 | (def #^:private base-type
|
|
708 | 757 | `(let [~name (js-this)]
|
709 | 758 | ~@body))
|
710 | 759 |
|
711 |
| -(defn to-property [sym] |
| 760 | +(defn- to-property [sym] |
712 | 761 | (symbol (core/str "-" sym)))
|
713 | 762 |
|
714 |
| -(defn warn-and-update-protocol [p type env] |
| 763 | +(defn- warn-and-update-protocol [p type env] |
715 | 764 | (when-not (= 'Object p)
|
716 | 765 | (if-let [var (cljs.analyzer/resolve-existing-var (dissoc env :locals) p)]
|
717 | 766 | (do
|
|
729 | 778 | (when (:undeclared cljs.analyzer/*cljs-warnings*)
|
730 | 779 | (cljs.analyzer/warning :undeclared-protocol-symbol env {:protocol p})))))
|
731 | 780 |
|
732 |
| -(defn resolve-var [env sym] |
| 781 | +(defn- resolve-var [env sym] |
733 | 782 | (let [ret (-> (dissoc env :locals)
|
734 | 783 | (cljs.analyzer/resolve-var sym)
|
735 | 784 | :name)]
|
736 | 785 | (assert ret (core/str "Can't resolve: " sym))
|
737 | 786 | ret))
|
738 | 787 |
|
739 |
| -(defn ->impl-map [impls] |
| 788 | +(defn- ->impl-map [impls] |
740 | 789 | (loop [ret {} s impls]
|
741 | 790 | (if (seq s)
|
742 | 791 | (recur (assoc ret (first s) (take-while seq? (next s)))
|
743 | 792 | (drop-while seq? (next s)))
|
744 | 793 | ret)))
|
745 | 794 |
|
746 |
| -(defn base-assign-impls [env resolve tsym type [p sigs]] |
| 795 | +(defn- base-assign-impls [env resolve tsym type [p sigs]] |
747 | 796 | (warn-and-update-protocol p tsym env)
|
748 | 797 | (let [psym (resolve p)
|
749 | 798 | pfn-prefix (subs (core/str psym) 0
|
|
762 | 811 | (core/defmethod extend-prefix :default
|
763 | 812 | [tsym sym] `(.. ~tsym -prototype ~(to-property sym)))
|
764 | 813 |
|
765 |
| -(defn adapt-obj-params [type [[this & args :as sig] & body]] |
| 814 | +(defn- adapt-obj-params [type [[this & args :as sig] & body]] |
766 | 815 | (core/list (vec args)
|
767 | 816 | (list* 'this-as (vary-meta this assoc :tag type) body)))
|
768 | 817 |
|
769 |
| -(defn adapt-ifn-params [type [[this & args :as sig] & body]] |
| 818 | +(defn- adapt-ifn-params [type [[this & args :as sig] & body]] |
770 | 819 | (let [self-sym (with-meta 'self__ {:tag type})]
|
771 | 820 | `(~(vec (cons self-sym args))
|
772 | 821 | (this-as ~self-sym
|
773 | 822 | (let [~this ~self-sym]
|
774 | 823 | ~@body)))))
|
775 | 824 |
|
776 | 825 | ;; for IFn invoke implementations, we need to drop first arg
|
777 |
| -(defn adapt-ifn-invoke-params [type [[this & args :as sig] & body]] |
| 826 | +(defn- adapt-ifn-invoke-params [type [[this & args :as sig] & body]] |
778 | 827 | `(~(vec args)
|
779 | 828 | (this-as ~(vary-meta this assoc :tag type)
|
780 | 829 | ~@body)))
|
781 | 830 |
|
782 |
| -(defn adapt-proto-params [type [[this & args :as sig] & body]] |
| 831 | +(defn- adapt-proto-params [type [[this & args :as sig] & body]] |
783 | 832 | `(~(vec (cons (vary-meta this assoc :tag type) args))
|
784 | 833 | (this-as ~this
|
785 | 834 | ~@body)))
|
786 | 835 |
|
787 |
| -(defn add-obj-methods [type type-sym sigs] |
| 836 | +(defn- add-obj-methods [type type-sym sigs] |
788 | 837 | (map (fn [[f & meths :as form]]
|
789 | 838 | (let [[f meths] (if (vector? (first meths))
|
790 | 839 | [f [(rest form)]]
|
|
793 | 842 | ~(with-meta `(fn ~@(map #(adapt-obj-params type %) meths)) (meta form)))))
|
794 | 843 | sigs))
|
795 | 844 |
|
796 |
| -(defn ifn-invoke-methods [type type-sym [f & meths :as form]] |
| 845 | +(defn- ifn-invoke-methods [type type-sym [f & meths :as form]] |
797 | 846 | (map
|
798 | 847 | (fn [meth]
|
799 | 848 | (let [arity (count (first meth))]
|
800 | 849 | `(set! ~(extend-prefix type-sym (symbol (core/str "cljs$core$IFn$_invoke$arity$" arity)))
|
801 | 850 | ~(with-meta `(fn ~meth) (meta form)))))
|
802 | 851 | (map #(adapt-ifn-invoke-params type %) meths)))
|
803 | 852 |
|
804 |
| -(defn add-ifn-methods [type type-sym [f & meths :as form]] |
| 853 | +(defn- add-ifn-methods [type type-sym [f & meths :as form]] |
805 | 854 | (let [meths (map #(adapt-ifn-params type %) meths)
|
806 | 855 | this-sym (with-meta 'self__ {:tag type})
|
807 | 856 | argsym (gensym "args")]
|
|
816 | 865 | (meta form)))]
|
817 | 866 | (ifn-invoke-methods type type-sym form))))
|
818 | 867 |
|
819 |
| -(defn add-proto-methods* [pprefix type type-sym [f & meths :as form]] |
| 868 | +(defn- add-proto-methods* [pprefix type type-sym [f & meths :as form]] |
820 | 869 | (let [pf (core/str pprefix f)]
|
821 | 870 | (if (vector? (first meths))
|
822 | 871 | ;; single method case
|
|
828 | 877 | ~(with-meta `(fn ~(adapt-proto-params type meth)) (meta form))))
|
829 | 878 | meths))))
|
830 | 879 |
|
831 |
| -(defn proto-assign-impls [env resolve type-sym type [p sigs]] |
| 880 | +(defn- proto-assign-impls [env resolve type-sym type [p sigs]] |
832 | 881 | (warn-and-update-protocol p type env)
|
833 | 882 | (let [psym (resolve p)
|
834 | 883 | pprefix (protocol-prefix psym)
|
|
845 | 894 | (add-proto-methods* pprefix type type-sym sig)))
|
846 | 895 | sigs)))))
|
847 | 896 |
|
848 |
| -(defn validate-impl-sigs [env p method] |
| 897 | +(defn- validate-impl-sigs [env p method] |
849 | 898 | (when-not (= p 'Object)
|
850 | 899 | (let [var (ana/resolve-var (dissoc env :locals) p)
|
851 | 900 | minfo (-> var :protocol-info :methods)
|
|
865 | 914 | (ana/warning :protocol-invalid-method env {:protocol p :fname fname :invalid-arity c}))
|
866 | 915 | (recur (next sigs) (conj seen c))))))))
|
867 | 916 |
|
868 |
| -(defn validate-impls [env impls] |
| 917 | +(defn- validate-impls [env impls] |
869 | 918 | (loop [protos #{} impls impls]
|
870 | 919 | (when (seq impls)
|
871 | 920 | (let [proto (first impls)
|
|
930 | 979 | parts
|
931 | 980 | (range fast-path-protocol-partitions-count))]))))
|
932 | 981 |
|
933 |
| -(defn annotate-specs [annots v [f sigs]] |
| 982 | +(defn- annotate-specs [annots v [f sigs]] |
934 | 983 | (conj v
|
935 | 984 | (vary-meta (cons f (map #(cons (second %) (nnext %)) sigs))
|
936 | 985 | merge annots)))
|
937 | 986 |
|
938 |
| -(defn dt->et |
| 987 | +(core/defn dt->et |
939 | 988 | ([type specs fields]
|
940 | 989 | (dt->et type specs fields false))
|
941 | 990 | ([type specs fields inline]
|
|
952 | 1001 | (recur ret specs))
|
953 | 1002 | ret)))))
|
954 | 1003 |
|
955 |
| -(defn collect-protocols [impls env] |
| 1004 | +(defn- collect-protocols [impls env] |
956 | 1005 | (->> impls
|
957 | 1006 | (filter core/symbol?)
|
958 | 1007 | (map #(:name (cljs.analyzer/resolve-var (dissoc env :locals) %)))
|
|
1738 | 1787 | `(.fromArray cljs.core/PersistentHashSet (array ~@xs) true)
|
1739 | 1788 | assoc :tag 'cljs.core/PersistentHashSet))))
|
1740 | 1789 |
|
1741 |
| -(defn js-obj* [kvs] |
| 1790 | +(defn- js-obj* [kvs] |
1742 | 1791 | (let [kvs-str (->> (repeat "~{}:~{}")
|
1743 | 1792 | (take (count kvs))
|
1744 | 1793 | (interpose ",")
|
|
1810 | 1859 | ~@body
|
1811 | 1860 | (recur (inc ~i)))))))
|
1812 | 1861 |
|
1813 |
| -(defn ^:private check-valid-options |
| 1862 | +(defn- check-valid-options |
1814 | 1863 | "Throws an exception if the given option map contains keys not listed
|
1815 | 1864 | as valid, else returns nil."
|
1816 | 1865 | [options & valid-keys]
|
|
1897 | 1946 |
|
1898 | 1947 | (def cs (into [] (map (comp gensym core/str core/char) (range 97 118))))
|
1899 | 1948 |
|
1900 |
| -(defn gen-apply-to-helper |
| 1949 | +(defn- gen-apply-to-helper |
1901 | 1950 | ([] (gen-apply-to-helper 1))
|
1902 | 1951 | ([n]
|
1903 | 1952 | (let [prop (symbol (core/str "-cljs$core$IFn$_invoke$arity$" n))
|
|
2004 | 2053 | (core/if-not (core/identical? form form')
|
2005 | 2054 | (recur form' (ana/macroexpand-1 env form'))
|
2006 | 2055 | `(quote ~form')))))
|
| 2056 | + |
| 2057 | +(defn- multi-arity-fn? [fdecl] |
| 2058 | + (core/< 1 (count fdecl))) |
| 2059 | + |
| 2060 | +(defn- variadic-fn? [fdecl] |
| 2061 | + (core/and (= 1 (count fdecl)) |
| 2062 | + (some '#{&} (ffirst fdecl)))) |
| 2063 | + |
| 2064 | +(defn- variadic-fn* |
| 2065 | + ([sym method] |
| 2066 | + (variadic-fn* sym method true)) |
| 2067 | + ([sym [arglist & body :as method] solo] |
| 2068 | + (let [sig (remove '#{&} arglist) |
| 2069 | + restarg (gensym "seq")] |
| 2070 | + (letfn [(get-delegate [] |
| 2071 | + 'cljs$core$IFn$_invoke$arity$variadic) |
| 2072 | + (get-delegate-prop [] |
| 2073 | + (symbol (core/str "-" (get-delegate)))) |
| 2074 | + (param-bind [param] |
| 2075 | + `[~param (^::ana/no-resolve first ~restarg) |
| 2076 | + ~restarg (^::ana/no-resolve next ~restarg)]) |
| 2077 | + (apply-to [] |
| 2078 | + (if (core/< 1 (count sig)) |
| 2079 | + (let [params (repeatedly (core/dec (count sig)) gensym)] |
| 2080 | + `(fn |
| 2081 | + ([~restarg] |
| 2082 | + (let [~@(mapcat param-bind params)] |
| 2083 | + (. ~sym (~(get-delegate) ~@params ~restarg)))))) |
| 2084 | + `(fn |
| 2085 | + ([~restarg] |
| 2086 | + (. ~sym (~(get-delegate) (seq ~restarg)))))))] |
| 2087 | + `(do |
| 2088 | + (set! (. ~sym ~(get-delegate-prop)) |
| 2089 | + (fn (~(vec sig) ~@body))) |
| 2090 | + ~@(when solo |
| 2091 | + `[(set! (. ~sym ~'-cljs$lang$maxFixedArity) |
| 2092 | + ~(core/dec (count sig)))]) |
| 2093 | + (set! (. ~sym ~'-cljs$lang$applyTo) |
| 2094 | + ~(apply-to))))))) |
| 2095 | + |
| 2096 | +(defn- variadic-fn [name meta [[arglist & body :as method] :as fdecl]] |
| 2097 | + (letfn [(dest-args [c] |
| 2098 | + (map (fn [n] `(aget (js-arguments) ~n)) |
| 2099 | + (range c)))] |
| 2100 | + (core/let [rname (symbol (core/str ana/*cljs-ns*) (core/str name)) |
| 2101 | + sig (remove '#{&} arglist) |
| 2102 | + c-1 (core/dec (count sig)) |
| 2103 | + meta (assoc meta |
| 2104 | + :top-fn |
| 2105 | + {:variadic true |
| 2106 | + :max-fixed-arity c-1 |
| 2107 | + :method-params [sig] |
| 2108 | + :arglists [arglist] |
| 2109 | + :arglists-meta (doall (map meta [arglist]))})] |
| 2110 | + `(do |
| 2111 | + (def ~(with-meta name meta) |
| 2112 | + (fn [] |
| 2113 | + (let [argseq# (when (< ~c-1 (alength (js-arguments))) |
| 2114 | + (new ^::ana/no-resolve cljs.core/IndexedSeq |
| 2115 | + (.call js/Array.prototype.slice |
| 2116 | + (js-arguments) ~c-1) 0))] |
| 2117 | + (. ~rname |
| 2118 | + (~'cljs$core$IFn$_invoke$arity$variadic ~@(dest-args c-1) argseq#))))) |
| 2119 | + ~(variadic-fn* rname method))))) |
| 2120 | + |
| 2121 | +(comment |
| 2122 | + (require '[clojure.pprint :as pp]) |
| 2123 | + (pp/pprint (variadic-fn 'foo {} '(([& xs])))) |
| 2124 | + (pp/pprint (variadic-fn 'foo {} '(([a & xs] xs)))) |
| 2125 | + (pp/pprint (variadic-fn 'foo {} '(([a b & xs] xs)))) |
| 2126 | + (pp/pprint (variadic-fn 'foo {} '(([a [b & cs] & xs] xs)))) |
| 2127 | + ) |
| 2128 | + |
| 2129 | +(defn- multi-arity-fn [name meta fdecl] |
| 2130 | + (letfn [(dest-args [c] |
| 2131 | + (map (fn [n] `(aget (js-arguments) ~n)) |
| 2132 | + (range c))) |
| 2133 | + (fixed-arity [rname sig] |
| 2134 | + (let [c (count sig)] |
| 2135 | + [c `(. ~rname |
| 2136 | + (~(symbol |
| 2137 | + (core/str "cljs$core$IFn$_invoke$arity$" c)) |
| 2138 | + ~@(dest-args c)))])) |
| 2139 | + (fn-method [[sig & body :as method]] |
| 2140 | + (if (some '#{&} sig) |
| 2141 | + (variadic-fn* name method false) |
| 2142 | + `(set! |
| 2143 | + (. ~name |
| 2144 | + ~(symbol (core/str "-cljs$core$IFn$_invoke$arity$" |
| 2145 | + (count sig)))) |
| 2146 | + (fn ~method))))] |
| 2147 | + (core/let [rname (symbol (core/str ana/*cljs-ns*) (core/str name)) |
| 2148 | + arglists (map first fdecl) |
| 2149 | + variadic (boolean (some #(some '#{&} %) arglists)) |
| 2150 | + sigs (remove #(some '#{&} %) arglists) |
| 2151 | + maxfa (apply core/max (map count sigs)) |
| 2152 | + meta (assoc meta |
| 2153 | + :top-fn |
| 2154 | + {:variadic variadic |
| 2155 | + :max-fixed-arity maxfa |
| 2156 | + :method-params sigs |
| 2157 | + :arglists arglists |
| 2158 | + :arglists-meta (doall (map meta arglists))})] |
| 2159 | + `(do |
| 2160 | + (def ~(with-meta name meta) |
| 2161 | + (fn [] |
| 2162 | + (case (alength (js-arguments)) |
| 2163 | + ~@(mapcat #(fixed-arity rname %) sigs) |
| 2164 | + ~(if variadic |
| 2165 | + `(let [argseq# (new ^::ana/no-resolve cljs.core/IndexedSeq |
| 2166 | + (.call js/Array.prototype.slice |
| 2167 | + (js-arguments) ~maxfa) 0)] |
| 2168 | + (. ~rname |
| 2169 | + (~'cljs$core$IFn$_invoke$arity$variadic |
| 2170 | + ~@(dest-args maxfa) |
| 2171 | + argseq#))) |
| 2172 | + `(throw (js/Error. |
| 2173 | + (str "Invalid arity: " |
| 2174 | + (alength (js-arguments))))))))) |
| 2175 | + ~@(map fn-method fdecl) |
| 2176 | + ;; optimization properties |
| 2177 | + (set! (. ~name ~'-cljs$lang$maxFixedArity) ~maxfa))))) |
| 2178 | + |
| 2179 | +(comment |
| 2180 | + (require '[clojure.pprint :as pp]) |
| 2181 | + (pp/pprint (multi-arity-fn 'foo {} '(([a]) ([a b])))) |
| 2182 | + (pp/pprint (multi-arity-fn 'foo {} '(([a]) ([a & xs])))) |
| 2183 | + (pp/pprint (multi-arity-fn 'foo {} '(([a]) ([a [b & cs] & xs])))) |
| 2184 | + ) |
| 2185 | + |
| 2186 | +(def |
| 2187 | + ^{:doc "Same as (def name (fn [params* ] exprs*)) or (def |
| 2188 | + name (fn ([params* ] exprs*)+)) with any doc-string or attrs added |
| 2189 | + to the var metadata. prepost-map defines a map with optional keys |
| 2190 | + :pre and :post that contain collections of pre or post conditions." |
| 2191 | + :arglists '([name doc-string? attr-map? [params*] prepost-map? body] |
| 2192 | + [name doc-string? attr-map? ([params*] prepost-map? body)+ attr-map?])} |
| 2193 | + defn (fn defn [&form &env name & fdecl] |
| 2194 | + ;; Note: Cannot delegate this check to def because of the call to (with-meta name ..) |
| 2195 | + (if (core/instance? clojure.lang.Symbol name) |
| 2196 | + nil |
| 2197 | + (throw (IllegalArgumentException. "First argument to defn must be a symbol"))) |
| 2198 | + (core/let [m (if (core/string? (first fdecl)) |
| 2199 | + {:doc (first fdecl)} |
| 2200 | + {}) |
| 2201 | + fdecl (if (core/string? (first fdecl)) |
| 2202 | + (next fdecl) |
| 2203 | + fdecl) |
| 2204 | + m (if (map? (first fdecl)) |
| 2205 | + (conj m (first fdecl)) |
| 2206 | + m) |
| 2207 | + fdecl (if (map? (first fdecl)) |
| 2208 | + (next fdecl) |
| 2209 | + fdecl) |
| 2210 | + fdecl (if (vector? (first fdecl)) |
| 2211 | + (core/list fdecl) |
| 2212 | + fdecl) |
| 2213 | + m (if (map? (last fdecl)) |
| 2214 | + (conj m (last fdecl)) |
| 2215 | + m) |
| 2216 | + fdecl (if (map? (last fdecl)) |
| 2217 | + (butlast fdecl) |
| 2218 | + fdecl) |
| 2219 | + m (conj {:arglists (core/list 'quote (sigs fdecl))} m) |
| 2220 | + m (core/let [inline (:inline m) |
| 2221 | + ifn (first inline) |
| 2222 | + iname (second inline)] |
| 2223 | + ;; same as: (if (and (= 'fn ifn) (not (symbol? iname))) ...) |
| 2224 | + (if (if (clojure.lang.Util/equiv 'fn ifn) |
| 2225 | + (if (core/instance? clojure.lang.Symbol iname) false true)) |
| 2226 | + ;; inserts the same fn name to the inline fn if it does not have one |
| 2227 | + (assoc m :inline (cons ifn (cons (clojure.lang.Symbol/intern (.concat (.getName ^clojure.lang.Symbol name) "__inliner")) |
| 2228 | + (next inline)))) |
| 2229 | + m)) |
| 2230 | + m (conj (if (meta name) (meta name) {}) m)] |
| 2231 | + (cond |
| 2232 | + (multi-arity-fn? fdecl) |
| 2233 | + (multi-arity-fn name m fdecl) |
| 2234 | + |
| 2235 | + (variadic-fn? fdecl) |
| 2236 | + (variadic-fn name m fdecl) |
| 2237 | + |
| 2238 | + :else |
| 2239 | + (core/list 'def (with-meta name m) |
| 2240 | + ;;todo - restore propagation of fn name |
| 2241 | + ;;must figure out how to convey primitive hints to self calls first |
| 2242 | + (cons `fn fdecl)))))) |
| 2243 | + |
| 2244 | +(. (var defn) (setMacro)) |
0 commit comments