rust/src/librustc_driver
bors 5ebf74851d Auto merge of #47630 - canndrew:exhaustive-patterns, r=nikomatsakis
Stabilise feature(never_type). Introduce feature(exhaustive_patterns)

This stabilizes `!`, removing the feature gate as well as the old defaulting-to-`()` behavior. The pattern exhaustiveness checks which were covered by `feature(never_type)` have been moved behind a new `feature(exhaustive_patterns)` gate.
2018-03-14 23:43:04 +00:00
..
profile Move PROFQ_CHAN to a Session field 2018-03-09 08:04:31 +01:00
build.rs rustc: Add some build scripts for librustc crates 2017-07-22 22:04:13 -07:00
Cargo.toml introduce infcx.at(..).normalize(..) operation [VIC] 2018-03-13 11:22:05 -04:00
derive_registrar.rs kill a bunch of one off tasks 2017-04-18 08:20:12 -04:00
driver.rs introduce infcx.at(..).normalize(..) operation [VIC] 2018-03-13 11:22:05 -04:00
lib.rs Rollup merge of #48993 - alexheretic:fix-48816, r=michaelwoerister 2018-03-15 00:15:56 +08:00
pretty.rs rustc: Load the rustc_trans crate at runtime 2018-01-27 19:16:21 -08:00
README.md Prefer to use attr::contains_name() and attr::find_by_name() 2017-12-28 12:32:24 +09:00
test.rs Auto merge of #47630 - canndrew:exhaustive-patterns, r=nikomatsakis 2018-03-14 23:43:04 +00:00

NB: This crate is part of the Rust compiler. For an overview of the compiler as a whole, see the README.md file found in librustc.

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).