-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Capture tokens for Pat used in macro_rules! argument #74846
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
29ae4d1
to
233f43f
Compare
@bors try @rust-timer queue |
Awaiting bors try build completion |
⌛ Trying commit 233f43f7c83fda51628b84d1aa68cb243f0eb218 with merge d990716b6a1fdde1300748828a9c9e79dfd0b898... |
The equivalent change for expressions caused a large number of regressions, so this will probably need a check-only crater run, which is a bit annoying because the crater queue is full. |
☀️ Try build successful - checks-actions, checks-azure |
Queued d990716b6a1fdde1300748828a9c9e79dfd0b898 with parent 7b3a781, future comparison URL. |
@craterbot check |
👌 Experiment ℹ️ Crater is a tool to run experiments across parts of the Rust ecosystem. Learn more |
Finished benchmarking try commit (d990716b6a1fdde1300748828a9c9e79dfd0b898): comparison url. Benchmarking this pull request likely means that it is perf-sensitive, so we're automatically marking it as not fit for rolling up. Please note that if the perf results are neutral, you should likely undo the rollup=never given below by specifying Importantly, though, if the results of this run are non-neutral do not roll this PR up -- it will mask other regressions or improvements in the roll up. @bors rollup=never |
@bors rollup=maybe |
🚧 Experiment ℹ️ Crater is a tool to run experiments across parts of the Rust ecosystem. Learn more |
🎉 Experiment
|
All of the regressions look spurious. |
Excellent. |
This extends PR rust-lang#73293 to handle patterns (Pat). Unlike expressions, patterns do not support custom attributes, so we only need to capture tokens during macro_rules! argument parsing.
233f43f
to
607a190
Compare
@bors r=petrochenkov |
📌 Commit 607a190 has been approved by |
⌛ Testing commit 607a190 with merge 117af305ccee87a8f1a6fcbfd0d56dbd6fb1fff4... |
💔 Test failed - checks-azure |
@bors retry |
☀️ Test successful - checks-actions, checks-azure |
Your PR failed (pretty log, raw log). Through arcane magic we have determined that the following fragments from the build log may contain information about the problem. Click to expand the log.
I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact |
This extends PR #73293 to handle patterns (Pat). Unlike expressions,
patterns do not support custom attributes, so we only need to capture
tokens during macro_rules! argument parsing.