You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The alexandria test is probably hitting a problem in CST.
But yes, (quasiquote #1=(#1#)) could work since it is basically just '#1=(#1#). Introducing unqoute within the circular part would be too hard to understand for me.
Macroexpansion of
(quasiquote #1=(#1#))
dies. This is becauseexpand
immediately calls itself on the car and cdr of its argument if given a cons.I suppose it's debatable whether quasiquote should be able to handle this, but we ran into it due to some code in the Alexandria tests: https://github.com/keithj/alexandria/blob/0426bd2fae19ae0492d44407f17ac1005196c9c3/tests.lisp#L677 (i mean, maybe. The path from that code to the crash is not totally clear yet, and there's no obvious backquoting there.)
Clasp issue: clasp-developers/clasp#885
The text was updated successfully, but these errors were encountered: