summary refs log tree commit diff
path: root/src/librustc_driver/test.rs
AgeCommit message (Expand)AuthorLines
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
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-2/+2
2015-01-30Remove the capture mode map and just store the capture mode for individual va...Niko Matsakis-2/+1
2015-01-27Merge remote-tracking branch 'rust-lang/master'Brian Anderson-2/+2
2015-01-27accommodate new scoping rules in librustc_driver unit tests.Felix S. Klock II-1/+1
2015-01-25Merge remote-tracking branch 'rust-lang/master'Brian Anderson-0/+1
2015-01-21Add 'feature' and 'since' to stability attributesBrian Anderson-1/+1
2015-01-21tests: fix fallout of merging ast::ViewItem into ast::Item.Eduard Burtescu-0/+1
2015-01-08librustc::session : Make DebuggingOpts use the options! macroManish Goregaokar-1/+1
2015-01-07Test fixes and rebase conflictsAlex Crichton-1/+1
2015-01-07use slicing sugarJorge Aparicio-1/+1
2015-01-06More test fixesAlex Crichton-2/+2
2015-01-07Replace full slice notation with index callsNick Cameron-1/+1
2015-01-05remove mk_closureJorge Aparicio-33/+0
2015-01-03sed -i -s 's/\bmod,/self,/g' **/*.rsJorge Aparicio-3/+3
2015-01-01Implement an iterator for walking types rather than the old callback code.Niko Matsakis-2/+54
2014-12-30Move the scalar types out of static data so that we can put `Rc` into sty.Niko Matsakis-46/+57
2014-12-30More rebase fixes.Huon Wilson-2/+2
2014-12-29Update rustc_driver tests.Huon Wilson-13/+17
2014-12-29Collect tcx arenas into a single struct.Huon Wilson-6/+2
2014-12-29Intern BareFnTys to make sty slightly smaller.Huon Wilson-1/+4