-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Decide on path forward for attributes on expressions #127436
Comments
We had a short discussion about this in the lang triage meeting today. We'd like to unblock progress here, but I had some concerns that I thought Tyler did a good job of phrasing: there might be a different between technically unambiguous and socially unambiguous. I'd thus like to propose making a partial step, and potentially coming back later with additional motivation for more places if needed. Proposal: We stabilize attributes on closures and on blocks, like these let _x = #[foo] || 0;
let _y = #[foo] { 4 };
let _z = { #![foo] 2 }; @rfcbot fcp merge (Noting that attributes on statements are already stable.) |
Team member @scottmcm has proposed to merge this. The next step is review by the rest of the tagged team members: Concerns:
Once a majority of reviewers approve (and at most 2 approvals are outstanding), this will enter its final comment period. If you spot a major issue that hasn't been raised at any point in this process, please speak up! cc @rust-lang/lang-advisors: FCP proposed for lang, please feel free to register concerns. |
@rfcbot reviewed In favor of taking an incremental step here. |
Do you plan to stabilize any attributes in list contexts like call(#[foo] { block1 }, #[bar] { block2 }) ? In any case I'll need to audit the technical details before any stabilization is merged, please ping me if necessary. |
@petrochenkov Are you thinking of that in terms of whether |
It needs to be decided how proc macros see the commas, or other separators in similar cases. Ideally proc macros should be able to turn 1 expression into multiple (including 0) expressions in this position, similarly to |
@scottmcm For closures with keywords in front of them (e.g. |
I'm aligned on @scottmcm's proposal, assuming we can resolve concerns mentioned by @petrochenkov. @rfcbot reviewed
It's definitely not clear to me what we want here. The original RFC makes no mention of macros or list contexts at all. Perhaps we should not include macros in this stabilization, and consider that question separately? |
@petrochenkov / @WaffleLapkin: Do you have any recommendations for what the correct semantics are, and what we could stabilize here as a conservative first step? |
Thanks for filing that, TC. I'm also feeling unconfident in my own proposal, after the explorations. @WaffleLapkin, do you know which things people are more looking to be able to do right now that they can't? What are people looking to be able to attribute? |
@scottmcm: The use case that brought this to my attention was that libs-api seems likely to add a |
Good catch @petrochenkov -- I agree that it'd be nice for the macro to be able to remove items from the list at least (not sure about expanding to 1+). I'm not sure if including the comma is the best way to do that, versus (for example) just saying that the comma is removed if the macro returns no tokens. I'm therefore inclined to say, let's exclude macro attributes in list position from stabilization. |
👍 for excluding them for now. I think there are reasonable steps we could take here, namely allowing expansions to produce a top-level |
I'll note that attributes on expressions are already stable in attribute proc macro inputs: |
In #124099, I implemented @WaffleLapkin's suggestion to disallow ambiguous attributes on expressions. However, this change turned out to cause regressions in several crates that incorrectly use expression attributes and was subsequently reverted. This showed that the ambiguity is already causing issues and should be deprecated regardless of what subset of the feature is stabilized. To avoid the breakage of #124099, we can emit future compatibility warnings for ambiguous attributes instead of erroring. |
@scottmcm here are the cases I was able to find (basically all of them from Rust Community Discord):
Conclude from that what you will. |
They sometimes don't work: fn main() {
#[allow(unused_variable)]
assert_eq!({ let a = 2; 3 }, 3);
} |
Long ago, we adopted rust-lang/rfcs#16 ("attributes on statements and blocks"). However, it's long been blocked despite the known and compelling use cases for this.
Over in the tracking issue, #15701, @WaffleLapkin explains the nature of what is blocking this and proposes a path forward:
Let's nominate this for discussion so we can decide whether we can unblock this by adopting that proposal.
This may have relevance for whether libs-api would feel the need to stabilize this:
@rustbot labels +I-lang-nominated +T-lang +C-discussion
cc @rust-lang/lang @WaffleLapkin
Tracking:
The text was updated successfully, but these errors were encountered: