We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
version
Babashka v1.3.191
platform
mac
problem
The record constructor taking a meta and ext ignores the meta.
repro
Babashka v1.3.191 REPL. Use :repl/quit or :repl/exit to quit the REPL. Clojure rocks, Bash reaches. user=> (defrecord A []) user.A user=> (meta (A. {:foo 1} nil)) nil
expected behavior
user=> (defrecord A []) user.A user=> (meta (A. {:foo 1} nil)) {:foo 1} user=> (clojure-version) "1.8.0"
The text was updated successfully, but these errors were encountered:
Never knew! Is this only with the constructor? In which real Clojure program did you discover this incompatibility?
Sorry, something went wrong.
See the comment in this PR where I use a workaround https://github.com/plumatic/schema/pull/457/files
Fix #928, wip
9ff005c
Fix #928: record constructor supports optional meta + ext map
a7642b1
3988d79
No branches or pull requests
version
Babashka v1.3.191
platform
mac
problem
The record constructor taking a meta and ext ignores the meta.
repro
expected behavior
The text was updated successfully, but these errors were encountered: