-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
macro documentation and implementation mismatch #4873
Comments
unfortunately I botched the fix for #4771, which led to this problem
@JeffBezanson is the best thing to do here to just update the docs? Or ask users to directly use |
No, this is a bug. |
Since macros are executed at parse-time in the caller's scope, how could this work any other way? In order to ignore the function-local |
Yes, but that is (should be) done automatically by the macro expander, which rewrites identifiers as e.g. |
unfortunately I botched the fix for #4771, which led to this problem
maybe the new |
From the docs (Manual/Metaprogramming):
Yet if you put the above code verbatim into a script and tack this to the end:
You get the output:
That println sure doesn't refer to the standard library one like the docs say. Comparing the result to g(), one can clearly see macros' lack of hygiene compared to functions. If the macro is defined in a different module, then it works because println is expanded to TheOtherModule.println. This could be fixed by expanding it to TheCurrentModule.println when it's not from a different module, so that in any case the globals lookups are always done from some module's globals.
Another one: the definition of assert in error.jl is different than claimed in the docs. One might say in the docs that this is a simplified version of the one in error.jl. More importantly, the use of$ex instead of $ (esc(ex)) would be better fixed or remarked upon ("this is subtly broken as we see in the next section" or something) lest someone imitate it because the official docs say that this is good enough for the standard library! The unescaped assert from the docs is not that hard to break:
results in:
The text was updated successfully, but these errors were encountered: