summary refs log tree commit diff
path: root/src/librustdoc
AgeCommit message (Collapse)AuthorLines
2012-12-17Change iter::find's closure to take a refErick Tryzelaar-1/+1
2012-12-14Rename core::comm to core::oldcommBrian Anderson-50/+50
2012-12-14Remove spawn_listener, spawn_conversationBrian Anderson-2/+25
These are not needed in a pipe-based Rustiverse
2012-12-13Rename Send trait to OwnedBrian Anderson-8/+8
2012-12-13librustdoc: Try to unbreak the test. rs=burningPatrick Walton-2/+2
2012-12-13librustc: Make `use` statements crate-relative by default. r=brsonPatrick Walton-12/+12
2012-12-11Reverse the order of the results of pipes::streamTim Chevalier-5/+5
As per #3637.
2012-12-11libstd: refactor future, remove with(), remove ~ indirection.Graydon Hoare-1/+1
Conflicts: src/libstd/future.rs
2012-12-10Remove un-needed code for obsolete classesTim Chevalier-3/+3
and rename "class" to "struct" everywhere possible (except local vars, I was too lazy for that) -- that is why this commit is so big. No review, just dead code removal and renaming. Closes #3515
2012-12-05librustc: Hook borrow check loan checking up to the moves-based-on-type ↵Patrick Walton-55/+64
infrastructure. rs=helps-unbreak-the-build
2012-12-03Update license, add license boilerplate to most files. Remainder will follow.Graydon Hoare-0/+290
2012-12-03librustdoc: Parenthesize closure calls in tests to attempt to put out ↵Patrick Walton-28/+28
burning tinderbox. rs=rustbot
2012-11-29librustc: Eliminate most expressions of the form `a.b()` that are not method ↵Patrick Walton-50/+50
calls. rs=refactoring
2012-11-28rustdoc: More pipe conversionBrian Anderson-18/+20
2012-11-28Merge remote-tracking branch 'brson/companion' into incomingBrian Anderson-401/+93
Conflicts: src/compiletest/compiletest.rs src/libcargo/cargo.rs src/libcore/core.rs src/librustc/rustc.rs src/librustdoc/rustdoc.rc
2012-11-28Register snapshotsBrian Anderson-309/+0
2012-11-28Merge pull request #4032 from catamorphism/getoptsGraydon Hoare-5/+5
[libstd] getopts, now with fewer copies
2012-11-27rustdoc: Make fold require Clone instead of CopyBrian Anderson-41/+110
2012-11-26Remove the crate languageBrian Anderson-91/+92
2012-11-24[libstd] getopts, now with fewer copiesTim Chevalier-5/+5
Change the opt_ functions in getopts to take a reference to a Matches, instead of taking a Matches by-value, as suggested in
2012-11-21rustdoc: Fix build errorBrian Anderson-1/+1
2012-11-20rustdoc: More demodingBrian Anderson-109/+109
2012-11-20rustdoc: Use more explicit selfBrian Anderson-46/+46
2012-11-20rustdoc: Begin removing legacy modesBrian Anderson-190/+197
2012-11-20rustdoc: Remove legacy exportsBrian Anderson-213/+102
2012-11-19rustc: Implement explicit self for Eq and Ord. r=graydonPatrick Walton-0/+309
2012-11-17Merge remote-tracking branch 'brson/codemap'Brian Anderson-5/+5
Conflicts: src/libsyntax/ext/source_util.rs
2012-11-14Camel case all the codemap types except spanBrian Anderson-1/+1
2012-11-14librustc: Require the #[derivable] attribute, remove the significance of ↵Patrick Walton-41/+26
"impl Foo : Bar;", and allow only a subset of methods in a trait to be derived. r=brson
2012-11-12Objectify the codemapBrian Anderson-1/+1
2012-11-12Remove CodeMap box typedef from codemapBrian Anderson-4/+4
2012-11-03library-ifying of tools - turning cargo, rustdoc, fuzzer, into libraries, as ↵Daniel Patterson-0/+6339
per #3543