about summary refs log tree commit diff
path: root/src/compiletest/header.rs
AgeCommit message (Collapse)AuthorLines
2013-05-23cleanup warnings from compiletestErick Tryzelaar-4/+3
2013-05-22libextra: Rename the actual metadata names of libcore to libstd and libstd ↵Patrick Walton-0/+2
to libextra
2013-05-14compiletest: Remove #[allow(vecs_implicitly_copyable)]Alex Crichton-17/+22
2013-05-14Use static string with fail!() and remove fail!(fmt!())Björn Steinbrink-1/+1
fail!() used to require owned strings but can handle static strings now. Also, it can pass its arguments to fmt!() on its own, no need for the caller to call fmt!() itself.
2013-05-10renamed str::from_slice to str::to_ownedYoungsoo Son-1/+1
2013-05-01compiletest: stop ignoring all tests.Graydon Hoare-1/+1
2013-05-01remove some warningsErick Tryzelaar-2/+1
2013-04-27only use #[no_core] in libcoreDaniel Micay-7/+0
2013-04-14test: remove unnecessary unsafe blocks/functionsAlex Crichton-10/+8
2013-03-26Fixed all use sites and testsMarvin Löbel-1/+2
2013-03-21back-renamed slice_DBG_BRWD, slice_V_DBG_BRWD -> slice, slice_DBG_UNIQ -> ↵Marvin Löbel-1/+1
slice_unique
2013-03-21renamed str::view -> slice_DBG_BRWDMarvin Löbel-2/+2
renamed str::slice -> slice_DBG_UNIQ changed vec slice method -> to_owned() renamed vec view method -> slice_V_DBG_BRWD
2013-03-11librustc: Replace all uses of `fn()` with `&fn()`. rs=defunPatrick Walton-1/+1
2013-03-03replace option::iter with a BaseIter implDaniel Micay-2/+2
2013-03-02librustc: Forbid chained imports and fix the logic for one-level renaming ↵Patrick Walton-4/+5
imports
2013-02-13Remove die!, raplace invocations with fail! Issue #4524 pt 3Nick Desaulniers-1/+1
2013-02-09Add debug info testsBrian Leibig-4/+30
2013-01-31Replace most invocations of fail keyword with die! macroNick Desaulniers-1/+1
2013-01-30librustdoc: De-export compiletest, combine-tests, libcargo, libfuzzer, and ↵Patrick Walton-7/+3
librustdoc. rs=deexporting
2013-01-28compiletest: Allow legacy recordsTim Chevalier-5/+5
But also remove most uses of structural records.
2013-01-23libsyntax: Remove `fn() unsafe { ... }`. r=graydonPatrick Walton-9/+11
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest ↵Patrick Walton-0/+2
module scope. r=tjc
2013-01-08Revert "librustc: Make unqualified identifier searches terminate at the ↵Patrick Walton-2/+0
nearest module scope. r=tjc" This reverts commit a8d37af2473da79be704c9ce2374f278c47177b6.
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest ↵Patrick Walton-0/+2
module scope. r=tjc
2013-01-08arrange core::os::constsILyoan-1/+1
2012-12-28Fix compiling compiletest. rs=fireErick Tryzelaar-0/+4
2012-12-28test: option variants get imported by defaultErick Tryzelaar-11/+11
2012-12-03Update license, add license boilerplate to most files. Remainder will follow.Graydon Hoare-0/+10
2012-09-27core: More option demodingBrian Anderson-2/+2
2012-09-26core: Replace map/map_default with map_ref/map_default_refBrian Anderson-1/+1
2012-09-26Demode vec::push (and convert to method)Niko Matsakis-3/+3
2012-09-25Demode core::resultBrian Anderson-1/+1
2012-09-23core: Demode optionBrian Anderson-4/+4
2012-09-10Convert 'import' to 'use'. Remove 'import' keyword.Brian Anderson-5/+2
2012-08-26Camel case the option typeBrian Anderson-19/+19
2012-08-26Fix build breakageBrian Anderson-0/+1
2012-08-24Start using core::path2::Path in a lot of places.Graydon Hoare-7/+7
2012-08-23`m1!{...}` -> `m1!(...)`Paul Stansifer-2/+2
2012-08-08Convert impls to new syntaxBrian Anderson-1/+0
2012-08-06Convert alt to match. Stop parsing altBrian Anderson-4/+4
2012-08-05Switch alts to use arrowsBrian Anderson-9/+9
2012-08-01Convert ret to returnBrian Anderson-8/+8
2012-07-30Change syntax extension syntax: `#m[...]` -> `m!{...}`.Paul Stansifer-2/+2
2012-07-14Move the world over to using the new style string literals and types. Closes ↵Michael Sullivan-30/+30
#2907.
2012-07-01Convert to new closure syntaxBrian Anderson-5/+5
2012-06-30Eliminate usages of old sugared call syntaxBrian Anderson-3/+3
2012-06-29Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.Michael Sullivan-6/+6
2012-06-25Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725.Michael Sullivan-6/+6
2012-06-21Remove some singleton vector appends.Eric Holk-3/+3
2012-05-03Fix compiletest::header::iter_header to work with new-style for loopsTim Chevalier-12/+10
Gets rid of a FIXME -- yay!