about summary refs log tree commit diff
path: root/src/librustc_driver/test.rs
AgeCommit message (Expand)AuthorLines
2015-11-26Use the TypeOrigin variants qualified.Ms2ger-2/+2
2015-11-18Update unit tests in driver.Niko Matsakis-2/+3
2015-11-10Rustfmting librustc_driver.Jose Narvaez-122/+103
2015-11-04Remove use of RefCell<DefMap> in resolve_lifetimeJonathan S-1/+1
2015-10-28Remove contraction. The contraction rules predated the notion of anNiko Matsakis-10/+14
2015-10-09Misc fixupsNick Cameron-3/+4
2015-10-01move direct accesses of `node` to go through `as_local_node_id`, unlessNiko Matsakis-1/+1
2015-10-01move job of creating local-def-ids to ast-map (with a few stragglers)Niko Matsakis-1/+1
2015-09-22Use Names in HIR ItemsVadim Petrochenkov-1/+1
2015-09-14move middle::ty and related modules to middle/ty/Ariel Ben-Yehuda-1/+1
2015-09-03Add an intital HIR and lowering stepNick Cameron-13/+17
2015-08-24fix other testAriel Ben-Yehuda-3/+5
2015-08-24Use a Vec instead of an HashMap for the scope hierarchyAriel Ben-Yehuda-18/+28
2015-08-03syntax: Implement #![no_core]Alex Crichton-1/+1
2015-07-10Change some instances of .connect() to .join()Wesley Wiser-1/+1
2015-07-01Update librustc_driver/test.rsJared Roesch-1/+1
2015-06-28Fix librustc_driver/test.rsJared Roesch-1/+1
2015-06-26rustc: switch most remaining middle::ty functions to methods.Eduard Burtescu-10/+10
2015-06-26rustc: make ty::mk_* constructors into methods on ty::ctxt.Eduard Burtescu-37/+31
2015-06-26rustc: combine type-flag-checking traits and fns and into one trait.Eduard Burtescu-7/+7
2015-06-20Auto merge of #26417 - brson:feature-err, r=steveklabnikbors-0/+2
2015-06-18Make a better error message for using #[feature] on stable rustBrian Anderson-0/+2
2015-06-19rustc: remove Repr and UserString.Eduard Burtescu-35/+25
2015-06-19rustc: replace Repr/UserString impls with Debug/Display ones.Eduard Burtescu-7/+4
2015-06-19rustc: use the TLS type context in Repr and UserString.Eduard Burtescu-19/+19
2015-06-19rustc: use Repr and UserString instead of ppaux::ty_to_string.Eduard Burtescu-2/+2
2015-06-19rustc: enforce stack discipline on ty::ctxt.Eduard Burtescu-14/+16
2015-06-19rustc_resolve: don't require redundant arguments to resolve_crate.Eduard Burtescu-1/+1
2015-06-12Cleanup: rename middle::ty::sty and its variants.Eli Friedman-1/+1
2015-06-10syntax: move ast_map to librustc.Eduard Burtescu-1/+2
2015-05-14syntax: refactor (Span)Handler and ParseSess constructors to be methods.Eduard Burtescu-2/+2
2015-04-24fix rustc_driver testsNiko Matsakis-1/+3
2015-04-17Fix some missing casesNiko Matsakis-1/+6
2015-04-02Rollup merge of #23895 - nikomatsakis:fn-trait-inheritance-add-impls, r=pnkfelixManish Goregaokar-9/+9
2015-04-01Auto merge of #23109 - nikomatsakis:closure-region-hierarchy, r=pnkfelixbors-0/+1
2015-04-01Implement the new region hierarchy rules, in which regions from distinctNiko Matsakis-0/+1
2015-03-31std: Remove #[old_orphan_check] from PartialEqAlex Crichton-6/+5
2015-03-31Port over type inference to using the new type relation stuffNiko Matsakis-9/+9
2015-03-26Mass rename uint/int to usize/isizeAlex Crichton-64/+64
2015-03-02Use `const`s instead of `static`s where appropriateFlorian Zeitz-1/+1
2015-02-28Separate most of rustc::lint::builtin into a separate crate.Huon Wilson-0/+2
2015-02-24Use arrays instead of vectors in testsVadim Petrochenkov-5/+5
2015-02-22Fix test falloutsFlavio Percoco-1/+1
2015-02-18rollup merge of #22502: nikomatsakis/deprecate-bracket-bracketAlex Crichton-1/+1
2015-02-18Replace all uses of `&foo[]` with `&foo[..]` en masse.Niko Matsakis-1/+1
2015-02-18Opt for .cloned() over .map(|x| x.clone()) etc.Kevin Butler-1/+1
2015-02-11Added DestructionScope variant to CodeExtent, representing the areaFelix S. Klock II-2/+2
2015-02-07Feature-gate #![no_std]Keegan McAllister-1/+1
2015-02-05cleanup: replace `as[_mut]_slice()` calls with deref coercionsJorge Aparicio-1/+1
2015-02-04More test fixesManish Goregaokar-2/+1