Skip to content
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 import/export #3114

Closed
eholk opened this issue Aug 6, 2012 · 18 comments
Closed

Macro import/export #3114

eholk opened this issue Aug 6, 2012 · 18 comments
Labels
A-syntaxext Area: Syntax extensions P-low Low priority

Comments

@eholk
Copy link
Contributor

eholk commented Aug 6, 2012

We need a way to export macros from modules and import them in other modules.

Currently we either prepend a string of macro definitions to every file, such as with debug!, error!, etc., or we just copy and paste the macros we need. This second approach leads to code duplication and lots of subtly different implementations.

As a temporary workaround, we could probably use include!.

@eholk
Copy link
Contributor Author

eholk commented Aug 6, 2012

This would provide a nice solution for #2247 as well.

@brson
Copy link
Contributor

brson commented Aug 6, 2012

Wishfully putting this on the 0.4 milestone.

@graydon
Copy link
Contributor

graydon commented Mar 25, 2013

non-critical for 0.6, de-milestoning

@brson
Copy link
Contributor

brson commented Apr 16, 2013

Nominating this for a milestone.

@pnkfelix
Copy link
Member

pnkfelix commented May 6, 2013

Does include! actually even function as a work-around for this problem? My brief experiments with using that did not seem to bear fruit.

@isaacaggrey
Copy link

@pnkfelix - I can't recall why, but I had to wrap the include! in a function -- see example use case in a bug I am working on #4219 (comment)

@pnkfelix
Copy link
Member

pnkfelix commented May 6, 2013

@isaacaggrey but in that case the scope of the macro will be limited to that function, yes? (At least, that matches my intuition about the usual intentions for lexically-scoped macros.) So that seems like a problem.

@isaacaggrey
Copy link

@pnkfelix IIUC you would think so, but it seems to not limit the macro's scope to the function. If you are trying to import macros from a separate file (in my case, integer-templates.rs), then I can call the imported macros (in my case, int_template!) anywhere in the current file (even outside of the function).

I would link to a gist, but my Rust build is currently not working.

@pnkfelix
Copy link
Member

pnkfelix commented May 7, 2013

Hmm, I see that this pattern certainly used to work in the code base, but we do not seem to use that pattern any more; @jbclements changed it in SHA: ca147a0

He replaced it with some #[macro_escape] attribute. See also commit SHA: 08b6057 which has a log message that explains the new scoping rules for macros (and also #5120 )

(Let me see if I can use that information to get include to work on macro definitions.)

@pnkfelix
Copy link
Member

pnkfelix commented May 7, 2013

Or rather, the whole point is to avoid using include and instead use the modules themselves. Which is the original point of this ticket anyway. :)

@isaacaggrey
Copy link

Thanks for the update, @pnkfelix . I hadn't followed the last couple months of macro changes and didn't even realize that hack didn't work anymore!

I suppose I have the same question/issue as you then now. :)

@pcwalton
Copy link
Contributor

I do not believe this is backwards incompatible.

@graydon
Copy link
Contributor

graydon commented Jun 13, 2013

accepted for feature-complete milestone

@pnkfelix
Copy link
Member

visiting for triage, email 2013-08-05.

I've looked at this in the past. Its something I'd like to see happen, especially coming from my experience working with Racket. (I'm not sure how many of the lessons/caveats from the Scheme community carry over here, though ... it depends in part on whether Rust has an analogue to let{,*,rec}-syntax or not.)

@alexcrichton
Copy link
Member

As pointed out in #10723, it may be possible to place #[macro_escape] at the top of a crate to let all the macros get serialized to the crate metadata. This would remove any need for importing/exporting macros, although it's not as general of a solution as having a use statement import a macro.

@pnkfelix
Copy link
Member

Accepted for P-low.

@sfackler
Copy link
Member

This was done in #11151.

@alexcrichton
Copy link
Member

Hurray! nice work @sfackler!

bors pushed a commit to rust-lang-ci/rust that referenced this issue May 15, 2021
fix a few typos found via codespell.
RalfJung pushed a commit to RalfJung/rust that referenced this issue Oct 21, 2023
ensure RET assignments do not get propagated on unwinding

Mostly this adds a test for rust-lang/unsafe-code-guidelines#468, and then also some other related tests I thought of while writing that test.
celinval pushed a commit to celinval/rust-dev that referenced this issue Jun 4, 2024
Let's close the loop and use `intrinsic_name`, the StableMIR API we
added in rust-lang#122203, to retrieve the
intrinsic name and avoid post-processing it.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-syntaxext Area: Syntax extensions P-low Low priority
Projects
None yet
Development

No branches or pull requests

8 participants