Skip to content

Commit 94ca126

Browse files
committed
* pr-map-entry needs to be ISeqable
1 parent 272d30e commit 94ca126

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/cljs/cljs/core.cljs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10524,7 +10524,9 @@ reduces them without incurring seq initialization"
1052410524
(reify
1052510525
IMapEntry
1052610526
(-key [_] k)
10527-
(-val [_] v)))
10527+
(-val [_] v)
10528+
ISeqable
10529+
(-seq [_] (IndexedSeq. #js [k v] 0 nil))))
1052810530

1052910531
(defn- pr-writer-impl
1053010532
[obj writer opts]

0 commit comments

Comments
 (0)