查看Rust宏输出

时间:2018-04-05 08:58:02

标签: macros rust

如何查看扩展的Rust宏的代码输出?

例如我有这个片段:

macro_rules! five_times {
    ($x:expr) => (5 * $x);
}

fn main() {
    let a = five_times!(2 + 3);
}

我想看到这样的事情:

fn main() {
    let a = 5 * (2 + 3);
}

1 个答案:

答案 0 :(得分:3)

使用夜间Rust时,您可以在源文件上使用以下命令:

rustc --pretty expanded -Z unstable-options FILENAME.rs

这将打印以下输出:

macro_rules! five_times(( $ x : expr ) => ( 5 * $ x ) ;);

fn main() { let a = 5 * (2 + 3); }