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 4e4ac4a commit 26d3384Copy full SHA for 26d3384
src/main/clojure/cljs/externs.clj
@@ -51,6 +51,7 @@
51
{:tag 'Function
52
:ret-tag (get-type* (.getReturnType info))
53
:arglists (list (into [] (map symbol (.getParameterNames info))))})))
54
+ {:line (.getLineno node)}
55
(when-let [doc (.getOriginalCommentString info)]
56
{:doc doc}))))))
57
@@ -179,6 +180,10 @@
179
180
2)
181
last meta)
182
183
+ (parse-externs
184
+ (closure/js-source-file "goog/string/string.js"
185
+ (io/input-stream (io/resource "goog/string/string.js"))))
186
+
187
(externs-map
188
[(closure/js-source-file "goog/string/string.js"
189
(io/input-stream (io/resource "goog/string/string.js")))]
0 commit comments