rustdoc: Begin writting the attribute extracting pass

This commit is contained in:
Brian Anderson
2012-01-16 19:39:53 -08:00
parent a0ed75bc49
commit cf40b60b5a
2 changed files with 68 additions and 3 deletions

View File

@@ -76,6 +76,7 @@ fn run(source_file: str) {
let srv = astsrv::mk_seq_srv_from_file(source_file);
let doc = extract::from_srv(srv, default_name);
let doc = run_passes(srv, doc, [
attr_pass::run,
tystr_pass::run
]);
gen::write_markdown(doc, std::io::stdout());