babel.middleware=> (defn a {:a 7} () {:b 8})
Placeholder message for defn
In Clojure interactive session on line 1 at position 1.
Call sequence:
[Clojure interactive session (repl)]
We need to separate out determining the clause, so this would require some refactoring.
⚠️ Imported from legacy repository. This issue is a duplicate of https://github.com/Clojure-Intro-Course/babel-legacy/issues/118.
defn
has an optional attribute map before and after clauses:https://clojuredocs.org/clojure.core/defn This affects figuring out which clause the error is in and also leads to unhandled cases:
We need to separate out determining the clause, so this would require some refactoring.