rust/src/librustc_driver
Dylan DPC db48a8a6aa
Rollup merge of #69059 - ljedrz:unused_stuff, r=Dylan-DPC
Remove a few unused objects

As far as I can tell, these won't be missed:

- `infer::region_constraints::ConstraintInfo`
- `driver::DefaultCallbacks`
- ~~`hir::intravisit::ParDeepVisitor`~~
2020-02-12 14:21:14 +01:00
..
args.rs Deprecate Error::description for real 2019-12-24 22:39:49 -08:00
build.rs Remove licenses 2018-12-25 21:08:33 -07:00
Cargo.toml Support linking from a .rlink file 2020-02-11 20:19:28 +11:00
lib.rs Rollup merge of #69059 - ljedrz:unused_stuff, r=Dylan-DPC 2020-02-12 14:21:14 +01:00
pretty.rs Move the krate method to Hir and remove the Krate dep node 2020-02-06 13:23:32 +01:00
README.md rustc-guide has moved 2018-11-26 15:03:13 -06: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.