summary refs log tree commit diff
path: root/src/compiletest
AgeCommit message (Collapse)AuthorLines
2013-06-30auto merge of #7487 : huonw/rust/vec-kill, r=cmrbors-2/+2
Continuation of #7430. I haven't removed the `map` method, since the replacement `v.iter().transform(f).collect::<~[SomeType]>()` is a little ridiculous at the moment.
2013-06-30Bump version from 0.7-pre to 0.7Brian Anderson-2/+2
2013-06-30Remove vec::{map, mapi, zip_map} and the methods, except for .map, since thisHuon Wilson-2/+2
is very common, and the replacement (.iter().transform().collect()) is very ugly.
2013-06-28librustc: Remove the broken overloaded assign-ops from the language.Patrick Walton-5/+5
They evaluated the receiver twice. They should be added back with `AddAssign`, `SubAssign`, etc., traits.
2013-06-27auto merge of #7430 : huonw/rust/vec-kill, r=thestingerbors-3/+2
2013-06-27Convert vec::{head, tail, init, last} (and similar fns) to methods.Huon Wilson-1/+1
2013-06-27Convert vec::[mut_]slice to methods, remove vec::const_slice.Huon Wilson-2/+1
2013-06-26WhitespaceBrian Anderson-1/+1
2013-06-25Merge remote-tracking branch 'mozilla/master' into incomingBrian Anderson-1/+1
Conflicts: src/librustc/middle/astencode.rs src/librustc/middle/check_const.rs
2013-06-25remove `each` from vec, HashMap and HashSetDaniel Micay-1/+1
2013-06-25Rename all files with the 'rc' extensionAlex Crichton-0/+0
2013-06-24Merge remote-tracking branch 'brson/shorttestnames' into HEADBrian Anderson-1/+9
2013-06-23compiletest: Shorten test namesBrian Anderson-1/+9
2013-06-23vec: remove BaseIter implementationDaniel Micay-6/+8
I removed the `static-method-test.rs` test because it was heavily based on `BaseIter` and there are plenty of other more complex uses of static methods anyway.
2013-06-21vec: remove eachiDaniel Micay-1/+1
replaced by the `enumerate` method from std::iterator
2013-06-17Converted vec::map to member.Vadim Chugunov-1/+1
2013-06-16std: test-fixes, remove warnings, syntax highlighting for code examples.Huon Wilson-1/+0
2013-06-14add IteratorUtil to the preludeDaniel Micay-3/+0
2013-06-12std: convert str::replace to a method.Huon Wilson-3/+3
2013-06-12std: replace str::append with a methodHuon Wilson-1/+1
2013-06-11option: remove redundant old_iter implsDaniel Micay-1/+2
2013-06-11fix tests, remove some warningsHuon Wilson-2/+0
2013-06-11std: replace str::{starts,ends}_with with the method.Huon Wilson-5/+5
2013-06-10std: remove str::{connect,concat}*.Huon Wilson-3/+3
2013-06-10std: convert str::char_at* to methods.Huon Wilson-3/+3
2013-06-10std: remove str::contains in favour of the methodHuon Wilson-5/+5
2013-06-10std: replace str::find_str* with a methodHuon Wilson-2/+2
2013-06-10std: convert character-based str::find_* to methods. Add .slice_{to,from} ↵Huon Wilson-1/+1
methods.
2013-06-10std: remove str::{len, slice, is_empty} in favour of methods.Huon Wilson-6/+6
2013-06-10std: replace str::all/any fns and methods with iteratorsHuon Wilson-1/+2
2013-06-10std: replace str::each_split* with an iteratorHuon Wilson-14/+9
2013-06-08remove deprecated vec::{is_empty, len} functionsDaniel Micay-2/+2
2013-06-09remove unused import warningsHuon Wilson-6/+0
2013-06-09std: remove each_char* fns and methods from str, replaced by iterators.Huon Wilson-1/+2
2013-06-06auto merge of #6895 : cmr/rust/jemalloc, r=brsonbors-1/+2
2013-06-04std::cell: Modernize constructorsPhilipp Brüschweiler-2/+2
Part of #3853
2013-06-01Windows fixesCorey Richardson-1/+2
2013-06-01compiletest: update for language changeYoung-il Choi-1/+1
2013-06-01compiletest: runtest.rs tidyYoung-il Choi-2/+2
2013-06-01compiletest: runtest.rs cleanupYoung-il Choi-115/+30
2013-06-01etc: adb_run_wrapper argument changeYoung-il Choi-1/+2
2013-06-01compiletest: improve exit code handling with adb_run_wrapperYoung-il Choi-0/+93
2013-05-30Remove a bunch of unnecessary allocations and copiesBjörn Steinbrink-12/+11
2013-05-29librustc: Stop reexporting the standard modules from prelude.Patrick Walton-4/+31
2013-05-28compiletest: Add #[no_core] to fix check-stage1.Luqman Aden-0/+1
2013-05-27Refactor core::run in order to address many of the issuesgareth-69/+16
mentioned in #2625. This change makes the module more oriented around Process values instead of having to deal with process ids directly. Apart from issues mentioned in #2625, other changes include: - Changing the naming to be more consistent - Process/process is now used instead of a mixture of Program/program and Process/process. - More docs/tests. Some io/scheduler related issues remain (mentioned in #2625).
2013-05-23cleanup warnings from compiletestErick Tryzelaar-54/+53
2013-05-22libextra: Rename the actual metadata names of libcore to libstd and libstd ↵Patrick Walton-2/+16
to libextra
2013-05-19reduce the usage of explicit version markersDaniel Micay-1/+1
2013-05-15Rename vec::len(var) to var.len()Youngmin Yoo-6/+6