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

Support attributes on macro invocations #6266

Closed
pnkfelix opened this issue May 6, 2013 · 4 comments
Closed

Support attributes on macro invocations #6266

pnkfelix opened this issue May 6, 2013 · 4 comments
Labels
A-attributes Area: Attributes (`#[…]`, `#![…]`) A-syntaxext Area: Syntax extensions

Comments

@pnkfelix
Copy link
Member

pnkfelix commented May 6, 2013

Attempting to compile the following example code fails with an error:

macro_rules! b3{ ( band $x:ident ) => ( static $x : int = 3i; ) }
macro_rules! b4{ ( bind $x:ident ) => ( static $x : int = 4i; ) }

#[cfg(stage0)]
b3!(band x)

#[cfg(not(stage0))]
b4!(bind x)

fn main() { io::println(fmt!("Hello world: %?", x)); }

The error:

% rustc /tmp/m.rs
/tmp/m.rs:5:0: 5:2 error: attrs on macros are not yet supported
/tmp/m.rs:5 b3!(band x)
            ^~

We should support such attributes. Here are some motivations:

  • As illustrated by the above example, it is difficult to migrate from one macro definition form in the snapshot rustc to a newer form in the development rustc, because you cannot annotate macro invocations with the usual #[cfg(stage0)] and #[cfg(not(stage0)].
  • One cannot put documentation comments on macros (which I believe are represented as attributes within the compiler internally; if this is not true, then this needs to be a separate issue ticket).
@catamorphism
Copy link
Contributor

Nominating for milestone 5, production-ready

@graydon
Copy link
Contributor

graydon commented Aug 22, 2013

accepted for feature-complete milestone

@chris-morgan
Copy link
Member

This also includes things like attempting to document macros:

/// This macro does X, Y and even Z.
macro_rules! foo(()=>())

I'm not sure if this would do what I want or not, but I do want to be able to document macros when using #[macro_escape];

@huonw
Copy link
Member

huonw commented Oct 9, 2013

Fixed by #9753.

@huonw huonw closed this as completed Oct 9, 2013
flip1995 pushed a commit to flip1995/rust that referenced this issue Nov 20, 2020
Fix or_fun_call for index operator

changelog: Fix or_fun_call for index operator

Fixes rust-lang#6266
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-attributes Area: Attributes (`#[…]`, `#![…]`) A-syntaxext Area: Syntax extensions
Projects
None yet
Development

No branches or pull requests

5 participants