Mitch Kyle
Mitch Kyle
Adds the concept of a `dictionary` which is a named library of phrasers. This allows one to create their own phrasers without having them be overwritten by other users of...
# Can't require child namespace The code from this report is available in the [Reference Project](https://codeberg.org/mitch-kyle/bug_report/src/branch/basilisp-require-child-bug) - If namespace `a` depends on `a.b` then it is not possible run namespace...
- Fixes #957 - Add namespace suffix for Basilisp modules. currently it's `basilisp_namespace ` but it's not set in stone. This allows parent namespaces to require descendant namespaces. - Create...
I'm experiencing a failure to require sibling namespaces. This happens with `basilisp run` as well as with cider even when the namespace is manually loaded into the repl. I'm on...
Implements #980 - `basilisp.test` - Add test report protocol - Add `run-tests`, `run-all-tests` - Add `with-fixtures`, `compose-fixtures`, and `join-fixtures` - Add `instance?` assertion - `basilisp.contrib.nrepl-server.test` - Add `test`, `test-all`, and...
It would be nice to be able to run tests in the repl with the `basilisp.test` namespace. The proposed changes: - Add [`run-tests`](https://clojure.github.io/clojure/clojure.test-api.html#clojure.test/run-tests), and [`run-all-tests`](https://clojure.github.io/clojure/clojure.test-api.html#clojure.test/run-all-tests), etc as in `clojure.test` to...
I'm getting a RecursionError trying to build functions with `loop`. It looks like the bindings from subsequent iterations are leaking into created functions. This form shows the bug. ```clojure user>...