about summary refs log tree commit diff
path: root/src/rustdoc/path_pass.rs
AgeCommit message (Collapse)AuthorLines
2012-11-03library-ifying of tools - turning cargo, rustdoc, fuzzer, into libraries, as ↵Daniel Patterson-108/+0
per #3543
2012-09-28demode vecNiko Matsakis-2/+2
2012-09-26Demode vec::push (and convert to method)Niko Matsakis-2/+2
2012-09-18rustdoc: Camel caseBrian Anderson-10/+10
2012-09-05rustdoc: "import" -> "use"Patrick Walton-2/+2
2012-09-04Remove 'with'Brian Anderson-8/+8
2012-08-01Clean out transitional lint.Graydon Hoare-2/+2
2012-07-17rustc: Implement and enforce instance coherencePatrick Walton-3/+4
2012-07-14Move the world over to using the new style string literals and types. Closes ↵Michael Sullivan-15/+15
#2907.
2012-07-04convert doc-attributes to doc-comments using ↵Gareth Daniel Smith-1/+1
./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498
2012-07-03Switch 'native' to 'extern' (or 'foreign' in some descriptions)Graydon Hoare-2/+2
2012-07-01Convert to new closure syntaxBrian Anderson-4/+4
2012-06-30Eliminate usages of old sugared call syntaxBrian Anderson-4/+4
2012-06-29Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.Michael Sullivan-7/+7
2012-06-26Change 'native' and 'crust' to 'extern'.Graydon Hoare-2/+2
This comes with a terminology change. All linkage-symbols are 'extern' now, including rust syms in other crates. Some extern ABIs are merely "foreign". The term "native" is retired, not clear/useful. What was "crust" is now "extern" applied to a _definition_. This is a bit of an overloading, but should be unambiguous: it means that the definition should be made available to some non-rust ABI.
2012-06-25Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725.Michael Sullivan-7/+7
2012-06-04Get rid of warnings from instantiating typarams with non-implicitly copyable ↵Michael Sullivan-1/+3
types.
2012-05-13rustc: Eliminate some indirection to the syntax crateBrian Anderson-1/+3
2012-03-26Bulk-edit mutable -> mut.Graydon Hoare-2/+2
2012-03-03rustdoc: Introduce the concept of a 'page'Brian Anderson-7/+9
2012-02-27rustdoc: Time passesBrian Anderson-1/+6
2012-02-24rustdoc: Fix some remaining bugs around native modsBrian Anderson-1/+15
2012-02-24rustdoc: Record paths to native functionsBrian Anderson-1/+19
2012-02-21rustdoc: Make it easy to switch between parallel and sequential foldsBrian Anderson-2/+2
2012-02-21rustdoc: Convert most passes to parallel foldsBrian Anderson-2/+2
2012-02-21rustdoc: Convert the astsrv constructor to a higher order fnBrian Anderson-9/+11
This will allow it to manage the destruction of the astsrv after I convert it to a task
2012-02-21rustdoc: Rename mk_srv_from_str/file to just from_str/fileBrian Anderson-2/+2
2012-02-20rustdoc: Remove stray logBrian Anderson-1/+0
2012-02-17rustdoc: Find the path to all item typesBrian Anderson-10/+21
2012-02-17rustdoc: Extract common item fields into itemdocBrian Anderson-5/+8
2012-01-30rustdoc: Use fewer unique pointersBrian Anderson-2/+2
2012-01-29rustdoc: Move mod docs into the item tagBrian Anderson-2/+2
2012-01-19rustdoc: Add path_pass for recording full paths to modsBrian Anderson-0/+49