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
That means that one needs to use expr(symbol("typed-dict"), ...) or similar escaping mechanisms to form such expressions manually (e.g. in macros). It would be desirable to use quotable identifiers (e.g. :typed_dict) in such cases instead.
Other examples include :typed-dict-comprehension, :dict-comprehension, and :typed-comprehension. I'm not sure if there are any others.
For backwards compatibility, I suppose one could allow either the hyphenated form or the underscored form (but use the latter by default).
The text was updated successfully, but these errors were encountered:
Currently,
Expr
sometimes requires LISPy symbols that are not quotable in Julia, e.g.:That means that one needs to use
expr(symbol("typed-dict"), ...)
or similar escaping mechanisms to form such expressions manually (e.g. in macros). It would be desirable to use quotable identifiers (e.g.:typed_dict
) in such cases instead.Other examples include
:typed-dict-comprehension
,:dict-comprehension
, and:typed-comprehension
. I'm not sure if there are any others.For backwards compatibility, I suppose one could allow either the hyphenated form or the underscored form (but use the latter by default).
The text was updated successfully, but these errors were encountered: