-
-
Notifications
You must be signed in to change notification settings - Fork 258
New issue
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
Improper expansion of Foo.
record constructor in syntax quote
#1339
Comments
Thanks! Yes, we should fix this. Did you run into a bug with this in a real program? |
Yes, basically this: (defrecord Foo [])
(deftest my-test
(is (eval `(Foo.)))) |
The relevant bits in clojure.tools.reader seems to be here: Note that tools.reader also resolves |
… -------- Original Message --------
On Aug 15, 2022, 05:52, Michiel Borkent wrote:
Thanks! Yes, we should fix this. Did you run into a bug with this in a real program?
—
Reply to this email directly, [view it on GitHub](#1339 (comment)), or [unsubscribe](https://github.com/notifications/unsubscribe-auth/AACGFJH6V2VUQX5XWMKG67DVZIHMNANCNFSM56RAWCMQ).
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
OK, thanks for following up. Should be fixed now. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
version
babashka v0.9.161
platform
Intel macOS 12.4
problem
If
(defrecord Foo [])
thenshould expand to
'user.Foo.
, instead bb expands to just'Foo.
repro
expected behavior
The text was updated successfully, but these errors were encountered: