Skip to content

Commit

Permalink
* ::node not ::nodes, fixes stackoverflow
Browse files Browse the repository at this point in the history
  • Loading branch information
swannodette committed Nov 1, 2024
1 parent 8822838 commit ac8b0de
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/test/clojure/cljs/analyzer/specs.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -235,20 +235,14 @@
(defmethod node :no-op [_]
::base)

(defmethod node :no-op [_]
::base)

(defmethod node :no-op [_]
::base)

(s/def ::expr ::node)

(defmethod node :quote [_]
(s/merge ::base
(s/keys
:req-un [::expr ::literal?])))

(s/def ::exprs (s/* ::nodes))
(s/def ::exprs (s/* ::node))

(defmethod node :recur [_]
(s/merge ::base
Expand Down

0 comments on commit ac8b0de

Please sign in to comment.