about summary refs log tree commit diff
path: root/src/rustdoc/attr_pass.rs
AgeCommit message (Collapse)AuthorLines
2012-11-03library-ifying of tools - turning cargo, rustdoc, fuzzer, into libraries, as ↵Daniel Patterson-307/+0
per #3543
2012-10-23rustc: Implement typechecking for simple monomorphic derivable traits on ↵Patrick Walton-4/+10
monomorphic types. r=brson
2012-10-19Remove superfluous by-ref in option::get, option::get_default, option::expectTim Chevalier-2/+2
Superficial change, no review.
2012-10-12Make moves explicit in rustdocTim Chevalier-1/+1
2012-10-12Replace several common macros of the form #m[...] with m!(...)Kevin Cantu-1/+1
This commit replaces nearly all remaining uses of #fmt, #debug, #error, and #info, and fixes some error messages...
2012-09-28rustdoc: Fix build errorsBrian Anderson-0/+1
2012-09-28demode vecNiko Matsakis-1/+1
2012-09-23core: Demode optionBrian Anderson-2/+2
2012-09-21De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachiNiko Matsakis-1/+1
2012-09-21Install new pub/priv/export rules as defaults, old rules accessible under ↵Graydon Hoare-0/+1
#[legacy_exports];
2012-09-20rustdoc: Use doc comments for rustdoc's rustdocsBrian Anderson-7/+7
2012-09-18rustdoc: Camel caseBrian Anderson-29/+29
2012-09-10Convert std::map to camel caseBrian Anderson-1/+1
2012-09-07Convert all kind bounds to camel case. Remove send, owned keywords.Brian Anderson-1/+1
2012-09-05rustdoc: "import" -> "use"Patrick Walton-5/+5
2012-09-04Remove 'with'Brian Anderson-18/+18
2012-08-26Camel case the option typeBrian Anderson-12/+12
2012-08-23Remove match checks in rustdocTim Chevalier-1/+3
2012-08-22intern identifiersPaul Stansifer-4/+5
2012-08-08rustdoc: Update for new impl syntaxBrian Anderson-2/+2
2012-08-08rustc: Do some plumbing work in preparation for common fields in enumsPatrick Walton-2/+2
2012-08-06Convert alt to match. Stop parsing altBrian Anderson-4/+4
2012-08-05Switch alts to use arrowsBrian Anderson-11/+9
2012-08-03rustc: Parse, serialize, and deserialize trait inheritancePatrick Walton-1/+1
2012-07-31Change remaining "iface" occurrences to "trait"; deprecate "iface"Lindsey Kuper-2/+2
2012-07-17rustc: Implement and enforce instance coherencePatrick Walton-3/+4
2012-07-17Get rustdoc working with std::par instead of its own par library. Closes #2885.Zack Corr-3/+3
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-30/+30
#2907.
2012-07-13Front-end support for default impls in traits.Lindsey Kuper-1/+8
2012-07-11infer when types are region parameterized rather than requiring /&Niko Matsakis-3/+3
- removes various fields from various variants in the AST - also update tests not to use this notation
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.