summary refs log tree commit diff
path: root/src/rustdoc/doc.rs
AgeCommit message (Collapse)AuthorLines
2012-09-28demode vecNiko Matsakis-18/+18
2012-09-23Register snapshots. Remove redundant Eq impls, Makefile hacksBrian Anderson-258/+0
2012-09-23core: Demode optionBrian Anderson-1/+1
2012-09-20rustc: De-mode all overloaded operatorsPatrick Walton-2/+260
2012-09-19rustdoc: Begin support for structsBrian Anderson-2/+38
2012-09-19rustdoc: Fix some script-mangled identsBrian Anderson-16/+16
2012-09-18rustdoc: Camel caseBrian Anderson-229/+229
2012-09-18Revert "rustc: Change all non-keyword uses of "link""Patrick Walton-3/+3
This reverts commit 3b013cd800ce675a445220105911bbefd2427e47.
2012-09-18rustc: Change all non-keyword uses of "link"Patrick Walton-3/+3
2012-09-07rustc: Add an "ne" method to the Eq trait, and implement it everywherePatrick Walton-6/+21
2012-08-29rustc: Make `<` and `=` into traitsPatrick Walton-0/+200
2012-08-26Camel case the option typeBrian Anderson-51/+51
2012-08-08Convert impls to new syntaxBrian Anderson-11/+11
2012-08-06Convert alt to match. Stop parsing altBrian Anderson-18/+18
2012-08-05Switch alts to use arrowsBrian Anderson-42/+42
2012-08-02Remove modes from map API and replace with regions.Niko Matsakis-20/+20
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-07-31Change remaining "iface" occurrences to "trait"; deprecate "iface"Lindsey Kuper-1/+1
2012-07-18syntax: Parse multiple trait refs in a single implementationPatrick Walton-1/+1
2012-07-17rustc: Implement and enforce instance coherencePatrick Walton-4/+32
2012-07-14Move the world over to using the new style string literals and types. Closes ↵Michael Sullivan-24/+24
#2907.
2012-07-13Front-end support for default impls in traits.Lindsey Kuper-1/+7
2012-07-05Change 'iface' to 'trait' internally; parse `trait` as `iface` synonymLindsey Kuper-9/+9
2012-07-04convert doc-attributes to doc-comments using ↵Gareth Daniel Smith-18/+16
./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498
2012-07-01Convert to new closure syntaxBrian Anderson-17/+17
2012-06-30Eliminate usages of old sugared call syntaxBrian Anderson-18/+18
2012-06-29Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.Michael Sullivan-29/+29
2012-06-25Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725.Michael Sullivan-30/+30
2012-06-24Remove resourcesTim Chevalier-22/+0
Also fixed shapes for classes with dtors, as well as handling offsets for classes with dtors correctly in take glue. Closes #2485
2012-06-21Tag all remaining FIXMEs with bugs. Install rule in tidy script to enforce this.Graydon Hoare-3/+3
2012-06-14Comments only: annotate FIXMEs in rustdocTim Chevalier-1/+1
2012-03-11rustdoc: Add indexes to native mods. Closes #1963Brian Anderson-1/+2
2012-03-09rustdoc: Vastly simplify the document modelBrian Anderson-47/+12
Don't attempt to impose any structure for documenting arguments, return values, etc.
2012-03-09rustdoc: Add the concept of 'sections'Brian Anderson-0/+15
2012-03-08rustdoc: Don't bother reporting the type of return valuesBrian Anderson-2/+1
2012-03-08rustdoc: Don't bother reporting the type of argumentsBrian Anderson-2/+1
This is already displayed in the function signature. Simpler this way.
2012-03-06rustdoc: Put brief descriptions in the indexesBrian Anderson-0/+2
2012-03-06rustdoc: Add a pass to split the document into pagesBrian Anderson-0/+84
2012-03-03rustdoc: Introduce the concept of a 'page'Brian Anderson-0/+24
2012-03-02rustdoc: Begin constructing indexesBrian Anderson-2/+0
2012-03-02Revert "rust: xfail-fast run-pass/cci_no_inline_exe"Brian Anderson-0/+2
This reverts commit 95099cddcf2691fcbb389db657c70cf80d776918.
2012-03-02rust: xfail-fast run-pass/cci_no_inline_exeBrian Anderson-2/+0
2012-03-01rustdoc: Add index records to the doc treeBrian Anderson-1/+25
2012-02-24rustdoc: Don't prune reexportsBrian Anderson-0/+2
2012-02-24rustdoc: Remove a pointer that's no longer neededBrian Anderson-11/+10
2012-02-24rustdoc: Extract doc nodes for native modsBrian Anderson-1/+10
2012-02-24rustdoc: Add doc node for native modsBrian Anderson-0/+11
2012-02-23rustdoc: Make reexports work in the crate moduleBrian Anderson-0/+3
2012-02-17rustdoc: Extract common item fields into itemdocBrian Anderson-47/+80
2012-02-17rustdoc: Add path field to all item docsBrian Anderson-0/+7
2012-02-01rustdoc: Add support for type itemsBrian Anderson-1/+20