about summary refs log tree commit diff
path: root/src/rustdoc/markdown_pass.rs
AgeCommit message (Collapse)AuthorLines
2012-11-03library-ifying of tools - turning cargo, rustdoc, fuzzer, into libraries, as ↵Daniel Patterson-874/+0
per #3543
2012-10-12Make moves explicit in rustdocTim Chevalier-9/+10
2012-10-11Update FIXME numbersTim Chevalier-2/+3
2012-09-23core: Demode optionBrian Anderson-14/+14
2012-09-21De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachiNiko Matsakis-6/+6
2012-09-21Install new pub/priv/export rules as defaults, old rules accessible under ↵Graydon Hoare-2/+5
#[legacy_exports];
2012-09-19demode the each() method on vec and other iterables.Niko Matsakis-4/+4
2012-09-19rustdoc: Hide impl __extensions__ name in indexBrian Anderson-1/+1
2012-09-19rustdoc: Begin support for structsBrian Anderson-1/+19
2012-09-19De-mode vec::each() and many of the str iteration routinesNiko Matsakis-4/+8
Note that the method foo.each() is not de-moded, nor the other vec routines.
2012-09-18rustdoc: Camel caseBrian Anderson-125/+125
2012-09-18Revert "rustc: Change all non-keyword uses of "link""Patrick Walton-1/+1
This reverts commit 3b013cd800ce675a445220105911bbefd2427e47.
2012-09-18rustc: Change all non-keyword uses of "link"Patrick Walton-1/+1
2012-09-05rustdoc: "import" -> "use"Patrick Walton-4/+4
2012-09-04Remove 'with'Brian Anderson-8/+8
2012-08-26Camel case the option typeBrian Anderson-12/+12
2012-08-25Fix some unused variable warningsBrian Anderson-1/+1
2012-08-24Start using core::path2::Path in a lot of places.Graydon Hoare-1/+1
2012-08-23`m1!{...}` -> `m1!(...)`Paul Stansifer-24/+24
2012-08-14rustdoc: Process markdown pages in sequence. Closes #2484Brian Anderson-1/+3
2012-08-08rustdoc: Update for new impl syntaxBrian Anderson-8/+22
2012-08-08Convert impls to new syntaxBrian Anderson-1/+0
2012-08-06Convert alt to match. Stop parsing altBrian Anderson-11/+11
2012-08-05Switch alts to use arrowsBrian Anderson-36/+36
2012-08-03rustc: Remove all fixed-length strings from our codebasePatrick Walton-1/+1
2012-08-02Remove modes from map API and replace with regions.Niko Matsakis-3/+3
API is (for now) mostly by value, there are options to use it by reference if you like. Hash and equality functions must be pure and by reference (forward looking to the day when something like send_map becomes the standard map).
2012-08-01Convert ret to returnBrian Anderson-6/+6
2012-07-31Change remaining "iface" occurrences to "trait"; deprecate "iface"Lindsey Kuper-4/+4
2012-07-30Change syntax extension syntax: `#m[...]` -> `m!{...}`.Paul Stansifer-20/+20
2012-07-18syntax: Parse multiple trait refs in a single implementationPatrick Walton-7/+9
2012-07-17rustc: Implement and enforce instance coherencePatrick Walton-5/+7
2012-07-17Get rustdoc working with std::par instead of its own par library. Closes #2885.Zack Corr-2/+2
2012-07-16replace core::tuple functions with methodsGareth Daniel Smith-2/+2
2012-07-14Move the world over to using the new style string literals and types. Closes ↵Michael Sullivan-126/+128
#2907.
2012-07-05Change 'iface' to 'trait' internally; parse `trait` as `iface` synonymLindsey Kuper-11/+11
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-04Remove empty argument lists from do expressionsBen Striegel-2/+2
2012-07-03core: Convert iter::repeat to the for protocolBrian Anderson-2/+2
2012-07-03Switch 'native' to 'extern' (or 'foreign' in some descriptions)Graydon Hoare-6/+6
2012-07-01Convert to new closure syntaxBrian Anderson-11/+11
2012-06-30Eliminate usages of old sugared call syntaxBrian Anderson-6/+6
2012-06-29Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.Michael Sullivan-10/+10
2012-06-28Get rid of some spurious /~s in rustdoc. Oops.Michael Sullivan-5/+5
2012-06-26Change 'native' and 'crust' to 'extern'.Graydon Hoare-4/+4
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-13/+13
2012-06-25Remove resources from a few places I missedTim Chevalier-12/+0
2012-06-24Remove resourcesTim Chevalier-9/+0
Also fixed shapes for classes with dtors, as well as handling offsets for classes with dtors correctly in take glue. Closes #2485
2012-05-25Get rid of many implicit copies as a preliminary to Issue #2448.Michael Sullivan-4/+4
2012-05-13rustc: Eliminate some indirection to the syntax crateBrian Anderson-2/+2
2012-04-06Convert old-style for loops to new-styleMarijn Haverbeke-3/+3
Most could use the each method, but because of the hack used to disambiguate old- and new-style loops, some had to use vec::each. (This hack will go away soon.) Issue #1619