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 7972430 commit 5c00113Copy full SHA for 5c00113
src/main/clojure/cljs/externs.clj
@@ -49,7 +49,8 @@
49
(.isInterface info) (merge {:iface qname})))
50
(if (.hasReturnType info)
51
{:tag 'Function
52
- :ret-tag (get-type* (.getReturnType info))})))
+ :ret-tag (get-type* (.getReturnType info))
53
+ :arglists (list (into [] (map symbol (.getParameterNames info))))})))
54
(when-let [doc (.getOriginalCommentString info)]
55
{:doc doc}))))))
56
0 commit comments