Skip to content

Commit ef98670

Browse files
committed
* type parsing wip
1 parent f3bb007 commit ef98670

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

src/main/clojure/cljs/externs.clj

+16
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,22 @@
3838
(into [] (butlast props))
3939
(with-meta (last props) ty))))
4040

41+
(def token->kw
42+
{Token/BANG :bang
43+
Token/BLOCK :block
44+
Token/PIPE :pipe
45+
Token/STRINGLIT :string-lit})
46+
47+
(defn parse-texpr [^Node root]
48+
(let [token (get token->kw (.getToken root))
49+
children (.children root)]
50+
(merge
51+
{:type token}
52+
(when-not (empty? children)
53+
{:children (vec (map parse-texpr (.children root)))})
54+
(when (= :string-lit token)
55+
{:value (.getString root)}))))
56+
4157
(defn get-tag [^JSTypeExpression texpr]
4258
(when-let [root (.getRoot texpr)]
4359
(if (.isString root)

0 commit comments

Comments
 (0)