Hi.
I try to create a new macro that is basically the same as format!()
, but with additional functionality.
What I want is to automatically append the current line of code to the end.
For example,
...
20 my_new_format!("{} {}", 1, "blue") // expect: "1 blue src/main.rs:20".
...
The format!()
macro is (macros.rs - source)
#[macro_export]
macro_rules! format_wl {
($($arg:tt)*) => {{
let res = $crate::fmt::format($crate::__export::format_args!($($arg)*));
res
}}
}
Which parts do I need to edit?
Thanks in advance.