-
Notifications
You must be signed in to change notification settings - Fork 370
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
Rethink gensym format #1531
Comments
That last option seems okay to me.
Consider that we've already implicitly staked claims on names beginning with |
What do you think of something like the following?
|
But then how would The double prefix looks weird. I think we have to re-use the But then the gensym name gets lost in the middle. Maybe put the gensym suffix right after the And maybe add another underscore for legibility. The point of using gensyms is to guarantee that accidental capture can't happen. I did not realize before, but the mangling makeover gives us a lexically-valid alias for any lexically-invalid gensym we might come up with. E.g. even if we had So it's now pointless to make gensyms lexically invalid, which means we're free to make them more readable. Shorter gensyms are more readable, but long names are much less likely to cause accidents than short ones. There never has been a mechanism to stop the user from accidentally colliding with "compiler" gensyms, like Maybe it's enough to tell the user not to use certain prefixes. But we could make this much more robust. For example, the |
It does beg the question though, should mangle always be reversible?
--
Sent from my Android device with K-9 Mail. Please excuse my brevity.
|
Right.
I don't want to prevent users from constructing a gensym on purpose, just by accident. They may want to do something sneaky with some Python code that was previously Hy-generated, or something. I didn't think about the double prefix that would result from something like If you really want to avoid a double prefix, we could forget about the
It's never going to round-trip properly because e.g. |
Obviously the
Often true, which is why I wanted the mangling to be human-readable in the first place, but we often debug macros using
This actually seems like a pretty good solution.
I think that would be nice. We could do it by swapping The leading/trailing exception means we have to do private and dunder names with underscores like in Python as I recommended in #1062. So |
One more point about reversibility, a symbol entered with the |
Sorry, to be more clear, with reversible, I really was aiming at stable. Don't know the appropriate math term - its almost idempotence: => (= (-> "foo-bar_baz" (mangle) (unmangle) (mangle))
... (-> "foo-bar_baz" (mangle))) As I was reading some of the ideas tossed around as toying with the idea of somewhat marrying |
That's right.
|
Now that #1517 has landed, we might want to rethink the gensym format.
_;let|1235
is a lot more readable thanAs mentioned in #1458, we could improve this a lot by changing the
|
to a-
or_
.The
ΔsemicolonΔ
part is harder to deal with. We don't want gensyms to be lexically valid symbols, which doesn't leave a lot of options. Symbols like_()let-1235
would be even longer mangled. But we could at least separate it from the gensym name with another-
.I'm not sure if we can do better.
The text was updated successfully, but these errors were encountered: