summary refs log tree commit diff
path: root/src/librustdoc/passes.rs
AgeCommit message (Expand)AuthorLines
2015-12-05std: Stabilize APIs for the 1.6 releaseAlex Crichton-1/+1
2015-11-19Changes to data produced by privacy passVadim Petrochenkov-10/+8
2015-11-02Accept tabs as indentation characterRicardo Martins-6/+24
2015-10-24Remove bare semicolonsFlorian Hahn-2/+2
2015-10-01move direct accesses of `node` to go through `as_local_node_id`, unlessNiko Matsakis-22/+17
2015-09-03std: Account for CRLF in {str, BufRead}::linesAlex Crichton-1/+1
2015-09-03Add an intital HIR and lowering stepNick Cameron-3/+4
2015-08-24fallout from moving def-idNiko Matsakis-5/+4
2015-07-12Auto merge of #26957 - wesleywiser:rename_connect_to_join, r=alexcrichtonbors-1/+1
2015-07-12Implement RFC 1058Simonas Kazlauskas-1/+1
2015-07-10Change some instances of .connect() to .join()Wesley Wiser-1/+1
2015-04-23Structural changes for associated constantsSean Patrick Santos-1/+2
2015-04-14Negative case of `len()` -> `is_empty()`Tamir Duberstein-2/+2
2015-04-14Positive case of `len()` -> `is_empty()`Tamir Duberstein-2/+2
2015-03-12rustdoc: Fix ICE with cross-crate default implsAlex Crichton-1/+1
2015-02-18Opt for .cloned() over .map(|x| x.clone()) etc.Kevin Butler-1/+1
2015-02-11rustc: Fix a number of stability lint holesAlex Crichton-3/+3
2015-02-05cleanup: replace `as[_mut]_slice()` calls with deref coercionsJorge Aparicio-9/+9
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-2/+2
2015-01-21rollup merge of #20179: eddyb/blind-itemsAlex Crichton-1/+1
2015-01-21Fallout from stabilization.Aaron Turon-1/+1
2015-01-21rustdoc: fix fallout of merging ast::ViewItem into ast::Item.Eduard Burtescu-1/+1
2014-12-21Fallout of std::str stabilizationAlex Crichton-3/+3
2014-12-06librustdoc: remove unnecessary `as_slice()` callsJorge Aparicio-8/+8
2014-11-29Replace some verbose match statements with their `if let` equivalent.jfager-26/+17
2014-11-26rustdoc: inherited vis. for struct variant fieldsTom Jakubowski-0/+4
2014-11-23std: Add a new top-level thread_local moduleAlex Crichton-1/+3
2014-10-21rustdoc: hide private traits in strip-private passTom Jakubowski-1/+12
2014-10-09rustdoc: Implement constant documentationAlex Crichton-1/+2
2014-09-23Deal with the fallout of string stabilizationAlex Crichton-1/+1
2014-09-17librustc: Implement associated types behind a feature gate.Patrick Walton-0/+3
2014-08-14librustc: Stop assuming that implementations and traits only containPatrick Walton-1/+1
2014-07-17deprecate Vec::getNick Cameron-1/+1
2014-06-26Remove unnecessary to_string callsPiotr Jawniak-1/+1
2014-06-10Fix more misspelled comments and strings.Joseph Crail-1/+1
2014-06-05Fallout from the libcollections movementAlex Crichton-1/+1
2014-05-31rustdoc: Fix cross-crate links to reexported itemsAlex Crichton-1/+1
2014-05-31rustdoc: Create anchor pages for primitive typesAlex Crichton-1/+15
2014-05-27std: Rename strbuf operations to stringRicho Healey-7/+7
2014-05-27std: Remove String's to_ownedRicho Healey-5/+5
2014-05-25rustdoc: Start inlining structs across cratesAlex Crichton-1/+2
2014-05-24core: rename strbuf::StrBuf to string::StringRicho Healey-3/+3
2014-05-22libcore: Remove all uses of `~str` from `libcore`.Patrick Walton-5/+5
2014-05-22rustdoc: Fill in external trait methodsAlex Crichton-4/+5
2014-05-12rustdoc: Fix hiding implementations of traitsAlex Crichton-1/+2
2014-05-12librustdoc: Remove all `~str` usage from librustdoc.Patrick Walton-17/+21
2014-05-09rustdoc: Hyperlink cross-crate reexportsAlex Crichton-7/+10
2014-05-07std: Modernize the local_data apiAlex Crichton-6/+3
2014-04-29rustdoc: Make strip_hidden use a dedicated hidden item if any.Kang Seonghoon-15/+16
2014-04-20rustdoc: Display tuple structs correctlyAlex Crichton-1/+10