jolt/test
Yogthos e2e7fa1447 feat: complete atom implementation, new macros, predicates, and test coverage
## Runtime (src/jolt/core.janet, +637/-99)

### Atom system (complete)
- core-atom: :validator and :meta options, watches table, atom-validate/atom-notify-watches helpers
- New functions: swap-vals!, reset-vals!, compare-and-set!, set-validator!, get-validator, add-watch, remove-watch
- Validator: blocks invalid reset!/swap!; watches: notification with old/new values; metadata support
- All 7 functions registered in core-bindings

### New predicates
- integer?, boolean?, list? — all registered in core-bindings

### New math
- abs, rand, rand-int — registered in core-bindings

### Control flow macros (7 new)
- cond, case (with one-of-many list support), condp, dotimes, while, if-not, when-first
- Registered as macros: cond, case, for, dotimes, while, condp, if-not, when-first

### Threading macros (7)
- -> (thread-first), ->> (thread-last), some->, some->>, cond->, cond->>, as->
- Renamed to core-thread-first/core-thread-last to avoid collision with comparison operators

### for comprehension
- Full Clojure for macro: :when, :let modifiers, nested bindings
- Uses map/mapcat expansion, correct last-group optimization

### Sequence operations (15 new)
- last, butlast, second, ffirst, fnext, nfirst, nnext, nthnext, nthrest
- drop-last, take-nth, map-indexed, keep, keep-indexed, reductions

### Nil-safety fixes
- core-reverse, core-sort, core-sort-by, core-distinct now handle nil input

## Tests (7 new files, 361 assertions across all tests)

### Ported from Clojure test suite (4 files)
- clojure-logic-test.janet: 82 assertions (if/and/or/not/some?/nil-punning)
- clojure-control-test.janet: 56 assertions (do/when/if-let/cond/dotimes/while/loop/case)
- clojure-macros-test.janet: 21 assertions (->/->>/some->/some->>/cond->/cond->>/as->)
- clojure-for-test.janet: 4 assertions (:when/:let/nested for)

### Systematic coverage
- clojure-atom-test.janet: 31 assertions (creation/reset!/swap!/swap-vals!/reset-vals!/CAS/validator/watches/meta)
- systematic-coverage.janet: 120+ assertions (predicates/math/comparison/logic/collections/seq-ops/destructuring)
- logic-test.janet: earlier ported logic tests

### Existing tests updated
- lazy-test.janet, phase7-test.janet: updated for nil-safe core functions

## Result
47 test files, all passing. 19 new functions/macros implemented.
Clojure atom semantics complete: validators, watches, metadata, CAS, swap-vals!/reset-vals!.
2026-06-04 12:01:58 -04:00
..
api-test.janet Initial commit: Jolt — Clojure interpreter on Janet 2026-06-01 16:48:56 -04:00
bootstrap-test.janet bootstrap: SCI core deps loading with 284/304 forms passing 2026-06-01 23:24:13 -04:00
cljs-collections-test.janet Phases 15-16: SCI bootstrap, Janet interop, eval, lazy-cat, CLJS ported tests 2026-06-03 23:44:49 -04:00
cljs-core-test.janet Phases 15-16: SCI bootstrap, Janet interop, eval, lazy-cat, CLJS ported tests 2026-06-03 23:44:49 -04:00
cljs-port-1.janet Phases 15-16: SCI bootstrap, Janet interop, eval, lazy-cat, CLJS ported tests 2026-06-03 23:44:49 -04:00
cljs-port-1a.janet Fix CLJS ported tests: all 5 files pass (sections 1-19, 23-27) 2026-06-03 12:55:36 -04:00
cljs-port-1b.janet Fix CLJS ported tests: all 5 files pass (sections 1-19, 23-27) 2026-06-03 12:55:36 -04:00
cljs-port-2.janet Phases 15-16: SCI bootstrap, Janet interop, eval, lazy-cat, CLJS ported tests 2026-06-03 23:44:49 -04:00
cljs-port-3.janet Fix CLJS ported tests: all 5 files pass (sections 1-19, 23-27) 2026-06-03 12:55:36 -04:00
cljs-port-3b.janet Phases 15-16: SCI bootstrap, Janet interop, eval, lazy-cat, CLJS ported tests 2026-06-03 23:44:49 -04:00
cljs-port-4.janet Phase 12: CLJS ported tests — 4 files, 27 sections, ~120 assertions 2026-06-03 12:46:26 -04:00
cljs-port-5.janet Phase 14 fixes: pr-str mapping, every-pred, PLAN.md update 2026-06-03 17:12:29 -04:00
cljs-port-6.janet Phases 15-16: SCI bootstrap, Janet interop, eval, lazy-cat, CLJS ported tests 2026-06-03 23:44:49 -04:00
cljs-port-7.janet Phases 15-16: SCI bootstrap, Janet interop, eval, lazy-cat, CLJS ported tests 2026-06-03 23:44:49 -04:00
cljs-port-8.janet Phases 15-16: SCI bootstrap, Janet interop, eval, lazy-cat, CLJS ported tests 2026-06-03 23:44:49 -04:00
cljs-port-9.janet Phases 15-16: SCI bootstrap, Janet interop, eval, lazy-cat, CLJS ported tests 2026-06-03 23:44:49 -04:00
cljs-port-10.janet Phases 15-16: SCI bootstrap, Janet interop, eval, lazy-cat, CLJS ported tests 2026-06-03 23:44:49 -04:00
cljs-port-test.janet Phases 15-16: SCI bootstrap, Janet interop, eval, lazy-cat, CLJS ported tests 2026-06-03 23:44:49 -04:00
clojure-atom-test.janet feat: complete atom implementation, new macros, predicates, and test coverage 2026-06-04 12:01:58 -04:00
clojure-control-test.janet feat: complete atom implementation, new macros, predicates, and test coverage 2026-06-04 12:01:58 -04:00
clojure-for-test.janet feat: complete atom implementation, new macros, predicates, and test coverage 2026-06-04 12:01:58 -04:00
clojure-logic-test.janet feat: complete atom implementation, new macros, predicates, and test coverage 2026-06-04 12:01:58 -04:00
clojure-macros-test.janet feat: complete atom implementation, new macros, predicates, and test coverage 2026-06-04 12:01:58 -04:00
compiler-test.janet Phase 4: deftype/defrecord completion 2026-06-02 21:10:33 -04:00
core-test.janet Initial commit: Jolt — Clojure interpreter on Janet 2026-06-01 16:48:56 -04:00
eval-test.janet Phases 15-16: SCI bootstrap, Janet interop, eval, lazy-cat, CLJS ported tests 2026-06-03 23:44:49 -04:00
evaluator-test.janet bootstrap: SCI core deps loading with 284/304 forms passing 2026-06-01 23:24:13 -04:00
hash-map-test.janet Phase 2: PersistentHashMap implementation + core function integration 2026-06-02 18:19:39 -04:00
interop-test.janet Phases 15-16: SCI bootstrap, Janet interop, eval, lazy-cat, CLJS ported tests 2026-06-03 23:44:49 -04:00
lazy-test.janet feat: complete atom implementation, new macros, predicates, and test coverage 2026-06-04 12:01:58 -04:00
logic-test.janet feat: complete atom implementation, new macros, predicates, and test coverage 2026-06-04 12:01:58 -04:00
macro-test.janet Initial commit: Jolt — Clojure interpreter on Janet 2026-06-01 16:48:56 -04:00
namespace-test.janet Initial commit: Jolt — Clojure interpreter on Janet 2026-06-01 16:48:56 -04:00
phase5-test.janet Phases 15-16: SCI bootstrap, Janet interop, eval, lazy-cat, CLJS ported tests 2026-06-03 23:44:49 -04:00
phase6-final.janet Bug fixes: nth, list, name, subs support in compiler 2026-06-02 16:30:25 -04:00
phase6-test.janet Phase 6 followup: fix #? reader conditional :default fallback 2026-06-02 22:00:08 -04:00
phase7-test.janet feat: complete atom implementation, new macros, predicates, and test coverage 2026-06-04 12:01:58 -04:00
phase8-test.janet Phase 8: fix extend-type/extend-protocol fn* form wrapping 2026-06-03 00:39:04 -04:00
phase10-test.janet Phase 10: Standard Library — 9 modules, core-reduce set fix 2026-06-03 10:40:47 -04:00
phase12-test.janet Phase 12: Protocol System — full implementation with all tests passing 2026-06-03 00:33:41 -04:00
phase13-test.janet Phase 13: Protocol Completion — reify dispatch, #() reader, IFn protocol 2026-06-03 13:19:56 -04:00
reader-test.janet bootstrap: SCI core deps loading with 284/304 forms passing 2026-06-01 23:24:13 -04:00
systematic-coverage.janet feat: complete atom implementation, new macros, predicates, and test coverage 2026-06-04 12:01:58 -04:00
test-load-sci.janet Phase 11: Fix pre-existing failures — 316/317 passing 2026-06-03 12:30:11 -04:00
test-sci-runtime.janet Phases 15-16: SCI bootstrap, Janet interop, eval, lazy-cat, CLJS ported tests 2026-06-03 23:44:49 -04:00
types-test.janet Initial commit: Jolt — Clojure interpreter on Janet 2026-06-01 16:48:56 -04:00