about summary refs log tree commit diff
path: root/src/rustdoc/prune_undoc_items_pass.rs
AgeCommit message (Collapse)AuthorLines
2012-03-09rustdoc: Vastly simplify the document modelBrian Anderson-377/+0
Don't attempt to impose any structure for documenting arguments, return values, etc.
2012-03-03rustdoc: Introduce the concept of a 'page'Brian Anderson-27/+27
2012-02-27rustdoc: Time passesBrian Anderson-2/+5
2012-02-24rustdoc: Remove a pointer that's no longer neededBrian Anderson-2/+2
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-4/+5
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-1/+1
2012-02-17rustdoc: Extract common item fields into itemdocBrian Anderson-16/+16
2012-02-01rustdoc: Add support for type itemsBrian Anderson-1/+28
2012-01-31rustdoc: Split the pruning of undocumented branches into two passesBrian Anderson-0/+346
prune_undoc_details_pass strips arguments and return values that are undocumented. prune_undoc_items_pass prunes entire items.