summary refs log tree commit diff
path: root/src/rustdoc/attr_pass.rs
AgeCommit message (Collapse)AuthorLines
2012-07-05Change 'iface' to 'trait' internally; parse `trait` as `iface` synonymLindsey Kuper-10/+10
2012-07-03Switch 'native' to 'extern' (or 'foreign' in some descriptions)Graydon Hoare-2/+2
2012-07-01Convert to new closure syntaxBrian Anderson-11/+11
2012-06-30Eliminate usages of old sugared call syntaxBrian Anderson-14/+14
2012-06-29Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.Michael Sullivan-4/+4
2012-06-26Change 'native' and 'crust' to 'extern'.Graydon Hoare-3/+3
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-4/+4
2012-06-13Box AST identsBrian Anderson-3/+3
2012-05-25Get rid of many implicit copies as a preliminary to Issue #2448.Michael Sullivan-1/+1
2012-05-21rustc: Move ast_map to the syntax crateBrian Anderson-1/+1
2012-05-13rustc: Eliminate some indirection to the syntax crateBrian Anderson-1/+1
2012-04-25lots of work to make iface/impls parameterized by regionsNiko Matsakis-2/+2
- paths can now take region parameters, replacing the dirty hack I was doing before of abusing vstores. vstores are now a bit of a hack though. - fix various small bugs: - we never checked that iface types were compatible when casting to an iface with `as` - we allowed nonsense like int<int> - and more! (actually that may be it)
2012-04-23Rename option::get_or_default to get_default, for consistencyTim Chevalier-1/+1
2012-04-19make nominal types optionally parameterized by a self region.Niko Matsakis-1/+1
Issue #2201.
2012-04-02Rename some core::option functionsTim Chevalier-1/+1
from_maybe => get_with_default maybe => with_option may => with_option_do I know these names are kind of ridiculous, but it's the best I could think of. Feel free to bikeshed. Closes #2081
2012-03-20Revert order of arguments to option::maybe and from_maybeMarijn Haverbeke-1/+1
Closes #2019
2012-03-09rustdoc: Simplify attribute parsingBrian Anderson-33/+13
2012-03-09rustdoc: Vastly simplify the document modelBrian Anderson-175/+7
Don't attempt to impose any structure for documenting arguments, return values, etc.
2012-03-08Drop collect_items pass, create decls on demandMarijn Haverbeke-1/+1
This solves a problem with inlined functions that have inner functions.
2012-03-07stdlib: Stop incurring vtable dispatch costs when hashmaps are usedPatrick Walton-1/+2
This required changing almost all users of hashmaps to import the hashmap interface first. The `size` member in the hashmap structure was renamed to `count` to work around a name conflict.
2012-03-07Revert "stdlib: Stop incurring vtable dispatch costs when hashmaps are used"Patrick Walton-2/+1
This reverts commit f0250a23d3fa2f8b4a4a4113ca89e41945a4cfed.
2012-03-07stdlib: Stop incurring vtable dispatch costs when hashmaps are usedPatrick Walton-1/+2
This required changing almost all users of hashmaps to import the hashmap interface first. The `size` member in the hashmap structure was renamed to `count` to work around a name conflict.
2012-03-03rustdoc: Introduce the concept of a 'page'Brian Anderson-37/+38
2012-02-27rustdoc: Time passesBrian Anderson-3/+6
2012-02-26rustdoc: Optimize some closures to avoid copyingBrian Anderson-3/+5
2012-02-26rustdoc: Rename util mod to parBrian Anderson-5/+5
2012-02-26rustdoc: Do all maps as util::anymapBrian Anderson-5/+5
2012-02-26rustdoc: Use default_any_fold in some testsBrian Anderson-2/+2
2012-02-24rustdoc: Extract attribute docs from native stuffsBrian Anderson-0/+13
2012-02-21rustdoc: Make it easy to switch between parallel and sequential foldsBrian Anderson-1/+1
2012-02-21rustdoc: Convert most passes to parallel foldsBrian Anderson-1/+1
2012-02-21rustdoc: Convert the astsrv constructor to a higher order fnBrian Anderson-15/+18
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-3/+3
2012-02-20rustdoc: astsrv::exec should return sendable typesBrian Anderson-1/+1
In order to make it parallelizable someday.
2012-02-17rustdoc: Simplify attr passBrian Anderson-117/+62
2012-02-17rustdoc: Extract common item fields into itemdocBrian Anderson-43/+70
2012-02-15Replace some explicit fails with 'alt check' invocationsMarijn Haverbeke-2/+1
2012-02-03Store item paths in ast_map, get rid of trans::local_ctxtMarijn Haverbeke-4/+4
The direct motivation for this was that the monomorphizer needs to be able to generate sane symbols for random items. The typechecker can probably also use this in the future to provide more useful error messages.
2012-02-01rustdoc: Add support for type itemsBrian Anderson-1/+26
2012-01-31rustdoc: Refactor testsBrian Anderson-105/+61
2012-01-31rustdoc: Pull impl docs out of attributesBrian Anderson-3/+56
2012-01-31Require alts to be exhaustiveTim Chevalier-2/+8
middle::check_alt does the work. Lots of changes to add default cases into alts that were previously inexhaustive.
2012-01-30rustdoc: Add iface attribute docs to the doc treeBrian Anderson-24/+106
2012-01-30rustdoc: Use fewer unique pointersBrian Anderson-19/+19
2012-01-29rustdoc: Fix typo in attr_passBrian Anderson-1/+1
2012-01-29rustdoc: Move mod docs into the item tagBrian Anderson-1/+1
2012-01-29rustdoc: Move fn docs into the item tagBrian Anderson-5/+5
2012-01-29rustdoc: Move const docs into the item tagBrian Anderson-1/+1
2012-01-29rustdoc: Move enum docs into the item tagBrian Anderson-2/+2
2012-01-29rustdoc: Move resource docs into the item tagBrian Anderson-2/+2