mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-21 22:34:05 +00:00
clarify a few things
This commit is contained in:
parent
b218623ea0
commit
a007d349a1
@ -391,13 +391,17 @@ fn run_compiler(
|
||||
|
||||
let linker = compiler.enter(|queries| {
|
||||
let early_exit = || early_exit().map(|_| None);
|
||||
|
||||
// Parse the crate root source code (doesn't parse submodules yet)
|
||||
// Everything else is parsed during macro expansion.
|
||||
queries.parse()?;
|
||||
|
||||
if let Some(ppm) = &sess.opts.pretty {
|
||||
if ppm.needs_ast_map() {
|
||||
// If pretty printing is requested: Figure out the representation, print it and exit
|
||||
if let Some(pp_mode) = sess.opts.pretty {
|
||||
if pp_mode.needs_ast_map() {
|
||||
queries.global_ctxt()?.enter(|tcx| {
|
||||
tcx.ensure().early_lint_checks(());
|
||||
pretty::print(sess, *ppm, pretty::PrintExtra::NeedsAstMap { tcx });
|
||||
pretty::print(sess, pp_mode, pretty::PrintExtra::NeedsAstMap { tcx });
|
||||
Ok(())
|
||||
})?;
|
||||
|
||||
@ -408,7 +412,7 @@ fn run_compiler(
|
||||
let krate = queries.parse()?;
|
||||
pretty::print(
|
||||
sess,
|
||||
*ppm,
|
||||
pp_mode,
|
||||
pretty::PrintExtra::AfterParsing { krate: &*krate.borrow() },
|
||||
);
|
||||
}
|
||||
|
@ -2893,6 +2893,7 @@ pub enum PpHirMode {
|
||||
}
|
||||
|
||||
#[derive(Copy, Clone, PartialEq, Debug)]
|
||||
/// Pretty print mode
|
||||
pub enum PpMode {
|
||||
/// Options that print the source code, i.e.
|
||||
/// `-Zunpretty=normal` and `-Zunpretty=expanded`
|
||||
|
Loading…
Reference in New Issue
Block a user