rust/src/librustc_driver
Niko Matsakis 8bd4bffe50 stop invoking DebruijnIndex::new directly
Co-authored-by: csmoe <35686186+csmoe@users.noreply.github.com>
2018-05-28 19:47:04 -04:00
..
profile Move query functions out from the define_maps! macro 2018-04-27 12:09:59 +02:00
build.rs
Cargo.toml Rename trans to codegen everywhere. 2018-05-17 15:08:30 +03:00
derive_registrar.rs
driver.rs Rename trans to codegen everywhere. 2018-05-17 15:08:30 +03:00
lib.rs Add edition to expansion info 2018-05-17 23:13:08 +03:00
pretty.rs Rename trans to codegen everywhere. 2018-05-17 15:08:30 +03:00
README.md Replace many of the last references to readmes 2018-03-16 12:43:22 -05:00
test.rs stop invoking DebruijnIndex::new directly 2018-05-28 19:47:04 -04:00

The driver crate is effectively the "main" function for the rust compiler. It orchestrates the compilation process and "knits together" the code from the other crates within rustc. This crate itself does not contain any of the "main logic" of the compiler (though it does have some code related to pretty printing or other minor compiler options).

For more information about how the driver works, see the rustc guide.