fix: conj 0-arg, conj onto nil (builds list), conj map into map

- (conj) -> []
- (conj nil x ...) builds a list (prepends): (conj nil 1 2) -> (2 1)
- conj a map value into a map/phm merges its entries ((conj {:a 0} {:b 1}) ->
  {:a 0 :b 1}); a [k v] vector/pair still adds one entry.

conj.cljc 14/6/5 -> 21/3/1. clojure-test-suite pass 3681->3691, errors 105->98.
spec: seq/conj-edge-cases (8). jpm test green.
This commit is contained in:
Yogthos 2026-06-05 10:30:07 -04:00
parent a4d9d5f70b
commit 66c8c1157b
3 changed files with 33 additions and 13 deletions

View file

@ -18,7 +18,7 @@
# Baseline: assertions Jolt currently passes across the suite. Raise as Jolt
# improves so a regression (previously-passing assertion breaking) is caught.
(def baseline-pass 3680)
(def baseline-pass 3690)
# A file is "clean" when it ran with zero failures AND zero errors.
(def baseline-clean-files 45)
# Per-file wall-clock budget (seconds). Normal files finish in well under 1s;

View file

@ -118,3 +118,14 @@
["map a map" "[1 nil 2]" "(map {:a 1 :b 2} [:a :z :b])"]
["take-nth transducer" "[0 2 4 6 8]" "(into [] (take-nth 2) (range 10))"]
["interpose transducer" "[1 :x 2]" "(into [] (interpose :x) [1 2])"])
# conj edge cases: 0-arg, conj onto nil (builds a list), conj a map into a map.
(defspec "seq / conj edge cases"
["conj no args" "[]" "(conj)"]
["conj nil one" "[3]" "(conj nil 3)"]
["conj nil many" "[2 1]" "(conj nil 1 2)"]
["conj vector" "[1 2 3]" "(conj [1 2] 3)"]
["conj list prepend" "[0 1 2]" "(conj '(1 2) 0)"]
["conj map + map" "{:a 0, :b 1}" "(conj {:a 0} {:b 1})"]
["conj map + pair" "{:a 0, :b 1}" "(conj {:a 0} [:b 1])"]
["conj map merge wins" "{:a 2}" "(conj {:a 0} {:a 1} {:a 2})"])