-
Is there a way to expand macros in a not recursive manor? Usually when I expanding macros, if there is any recursion it has been third party macros that I dont care about peeking at. It's actually easier to debug when its not recursive. Though It is valuable to recursivly expand macros also - I typically prefer not to. It would be nice to have an option to only expand macros without recursion. |
Beta Was this translation helpful? Give feedback.
Answered by
mrcjkb
Feb 26, 2024
Replies: 1 comment 1 reply
-
Hey 👋 macro expansion is handled by rust-analyzer. You'll probably want to follow this issue. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
TomzBench
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey 👋
macro expansion is handled by rust-analyzer.
Afaik, it's always recursive.
You'll probably want to follow this issue.