We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cf28f8 commit 7398f08Copy full SHA for 7398f08
src/main/clojure/clojure/tools/macro.clj
@@ -153,7 +153,7 @@
153
"Handle deftype* forms."
154
[[symbol typename classname fields implements interfaces & methods]]
155
(assert (= implements :implements))
156
- (let [expanded-methods (map #(expand-args % 2) methods)]
+ (let [expanded-methods (doall (map #(expand-args % 2) methods))]
157
(concat
158
(list symbol typename classname fields implements interfaces)
159
expanded-methods)))
0 commit comments