65

我有一个涉及宏的编译错误:

<mdo macros>:6:19: 6:50 error: cannot move out of captured outer variable in an `FnMut` closure
<mdo macros>:6 bind ( $ e , move | $ p | mdo ! { $ ( $ t ) * } ) ) ; (
                                 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
<mdo macros>:1:1: 14:36 note: in expansion of mdo!
<mdo macros>:6:27: 6:50 note: expansion site
<mdo macros>:1:1: 14:36 note: in expansion of mdo!
<mdo macros>:6:27: 6:50 note: expansion site
<mdo macros>:1:1: 14:36 note: in expansion of mdo!
src/parser.rs:30:42: 37:11 note: expansion site
error: aborting due to previous error

不幸的是,宏是递归的,所以很难弄清楚编译器在抱怨什么,而且行号似乎是针对扩展宏而不是我的代码的。

我怎样才能看到扩展的宏?是否有一个标志我可以传递给 rustc(甚至更好的货物)来转储它?

(这个宏来自rust-mdo,虽然我认为这并不重要。)

4

3 回答 3

80

cargo rustc --profile=check -- -Zunpretty=expanded,但更简洁的选择是cargo-expand crate。它提供了一个 Cargo 子命令cargo expand,用于打印宏扩展的结果。它还传递扩展的代码rustfmt,通常会产生比 rustc 的默认输出更具可读性的代码。

通过运行安装cargo install cargo-expand

于 2016-06-05T06:10:54.720 回答
49

是的,您可以将一个特殊标志传递给rustc,称为--pretty=expanded

% cat test.rs
fn main() {
    println!("Hello world");
}
% rustc -Z unstable-options --pretty=expanded test.rs
#![feature(no_std)]
#![no_std]
#[prelude_import]
use std::prelude::v1::*;
#[macro_use]
extern crate "std" as std;
fn main() {
    ::std::old_io::stdio::println_args(::std::fmt::Arguments::new_v1({
                                                                         static __STATIC_FMTSTR:
                                                                                &'static [&'static str]
                                                                                =
                                                                             &["Hello world"];
                                                                         __STATIC_FMTSTR
                                                                     },
                                                                     &match ()
                                                                          {
                                                                          ()
                                                                          =>
                                                                          [],
                                                                      }));
}

但是,您需要先通过-Z unstable-options.

从 Rust 1.1 开始,您可以将这些参数传递给 Cargo,如下所示:

cargo rustc -- -Z unstable-options --pretty=expanded
于 2015-02-18T09:53:43.907 回答
9

从 开始nightly-2021-07-28,必须通过-Zunpretty=expanded而不是-Zunstable-options --pretty=expanded,如下所示:

% rustc -Zunpretty=expanded test.rs

或者:

% cargo rustc -- -Zunpretty=expanded

相关的 rustc 提交

该论点已通过此提交--pretty从中删除。通过此提交添加了对的支持。nightly-2021-07-28-Zunpretty=expandednightly-2018-01-24

于 2021-08-19T07:01:28.870 回答