2012-12-03 18:48:01 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-09-21 20:07:17 -05:00
|
|
|
//! Prune things that are private
|
|
|
|
|
2012-09-21 21:09:05 -05:00
|
|
|
#[legacy_exports];
|
|
|
|
|
2012-12-05 17:06:54 -06:00
|
|
|
use fold::Fold;
|
|
|
|
|
2012-09-21 20:07:17 -05:00
|
|
|
export mk_pass;
|
|
|
|
|
|
|
|
fn mk_pass() -> Pass {
|
|
|
|
{
|
|
|
|
name: ~"prune_private",
|
|
|
|
f: run
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-19 20:48:46 -06:00
|
|
|
fn run(srv: astsrv::Srv, +doc: doc::Doc) -> doc::Doc {
|
2012-12-05 17:06:54 -06:00
|
|
|
let fold = Fold {
|
2012-09-21 20:07:17 -05:00
|
|
|
fold_mod: fold_mod,
|
2012-12-05 17:06:54 -06:00
|
|
|
.. fold::default_any_fold(srv)
|
|
|
|
};
|
2012-11-29 19:51:16 -06:00
|
|
|
(fold.fold_doc)(&fold, doc)
|
2012-09-21 20:07:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn fold_mod(
|
2012-11-19 20:48:46 -06:00
|
|
|
fold: &fold::Fold<astsrv::Srv>,
|
|
|
|
+doc: doc::ModDoc
|
2012-09-21 20:07:17 -05:00
|
|
|
) -> doc::ModDoc {
|
|
|
|
let doc = fold::default_any_fold_mod(fold, doc);
|
|
|
|
|
|
|
|
doc::ModDoc_({
|
|
|
|
items: do doc.items.filter |ItemTag| {
|
|
|
|
is_visible(fold.ctxt, ItemTag.item())
|
|
|
|
},
|
|
|
|
.. *doc
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_visible(srv: astsrv::Srv, doc: doc::ItemDoc) -> bool {
|
|
|
|
use syntax::ast_map;
|
|
|
|
use syntax::ast;
|
|
|
|
|
|
|
|
let id = doc.id;
|
|
|
|
|
|
|
|
do astsrv::exec(srv) |ctxt| {
|
|
|
|
match ctxt.ast_map.get(id) {
|
|
|
|
ast_map::node_item(item, _) => {
|
|
|
|
item.vis == ast::public
|
|
|
|
}
|
2012-11-26 20:03:36 -06:00
|
|
|
_ => core::util::unreachable()
|
2012-09-21 20:07:17 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn should_prune_items_without_pub_modifier() {
|
|
|
|
let doc = test::mk_doc(~"mod a { }");
|
|
|
|
assert vec::is_empty(doc.cratemod().mods());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
2012-09-21 21:09:05 -05:00
|
|
|
pub fn mk_doc(source: ~str) -> doc::Doc {
|
2012-09-21 20:07:17 -05:00
|
|
|
do astsrv::from_str(source) |srv| {
|
|
|
|
let doc = extract::from_srv(srv, ~"");
|
|
|
|
run(srv, doc)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|