2013-09-12 20:10:51 -05:00
|
|
|
// Copyright 2012-2013 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.
|
|
|
|
|
2013-08-15 15:28:54 -05:00
|
|
|
//! Rust AST Visitor. Extracts useful information and massages it into a form
|
|
|
|
//! usable for clean
|
|
|
|
|
2014-09-23 17:13:56 -05:00
|
|
|
use std::collections::HashSet;
|
|
|
|
|
2014-04-02 03:19:41 -05:00
|
|
|
use syntax::abi;
|
2013-12-22 13:23:04 -06:00
|
|
|
use syntax::ast;
|
2014-01-07 20:46:16 -06:00
|
|
|
use syntax::ast_util;
|
|
|
|
use syntax::ast_map;
|
2014-06-26 13:37:39 -05:00
|
|
|
use syntax::attr;
|
2014-05-02 19:16:30 -05:00
|
|
|
use syntax::attr::AttrMetaMethods;
|
2013-09-05 09:14:35 -05:00
|
|
|
use syntax::codemap::Span;
|
2014-05-18 08:56:13 -05:00
|
|
|
use syntax::ptr::P;
|
2013-08-15 15:28:54 -05:00
|
|
|
|
2014-06-26 13:37:39 -05:00
|
|
|
use rustc::middle::stability;
|
|
|
|
|
2014-01-07 20:46:16 -06:00
|
|
|
use core;
|
2013-08-15 15:28:54 -05:00
|
|
|
use doctree::*;
|
|
|
|
|
2014-07-17 11:45:31 -05:00
|
|
|
// looks to me like the first two of these are actually
|
|
|
|
// output parameters, maybe only mutated once; perhaps
|
|
|
|
// better simply to have the visit method return a tuple
|
|
|
|
// containing them?
|
|
|
|
|
|
|
|
// also, is there some reason that this doesn't use the 'visit'
|
|
|
|
// framework from syntax?
|
|
|
|
|
2014-09-06 11:13:40 -05:00
|
|
|
pub struct RustdocVisitor<'a, 'tcx: 'a> {
|
2014-03-28 12:27:24 -05:00
|
|
|
pub module: Module,
|
|
|
|
pub attrs: Vec<ast::Attribute>,
|
2014-09-06 11:13:40 -05:00
|
|
|
pub cx: &'a core::DocContext<'tcx>,
|
2014-03-28 12:27:24 -05:00
|
|
|
pub analysis: Option<&'a core::CrateAnalysis>,
|
2014-09-23 17:13:56 -05:00
|
|
|
view_item_stack: HashSet<ast::NodeId>,
|
2013-08-15 15:28:54 -05:00
|
|
|
}
|
|
|
|
|
2014-09-06 11:13:40 -05:00
|
|
|
impl<'a, 'tcx> RustdocVisitor<'a, 'tcx> {
|
|
|
|
pub fn new(cx: &'a core::DocContext<'tcx>,
|
|
|
|
analysis: Option<&'a core::CrateAnalysis>) -> RustdocVisitor<'a, 'tcx> {
|
2013-08-15 15:28:54 -05:00
|
|
|
RustdocVisitor {
|
|
|
|
module: Module::new(None),
|
2014-03-05 17:28:08 -06:00
|
|
|
attrs: Vec::new(),
|
2014-01-07 20:46:16 -06:00
|
|
|
cx: cx,
|
|
|
|
analysis: analysis,
|
2014-09-23 17:13:56 -05:00
|
|
|
view_item_stack: HashSet::new(),
|
2013-08-15 15:28:54 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-26 13:37:39 -05:00
|
|
|
fn stability(&self, id: ast::NodeId) -> Option<attr::Stability> {
|
2014-09-06 11:13:40 -05:00
|
|
|
self.cx.tcx_opt().and_then(|tcx| stability::lookup(tcx, ast_util::local_def(id)))
|
2014-06-26 13:37:39 -05:00
|
|
|
}
|
|
|
|
|
2014-02-05 15:15:24 -06:00
|
|
|
pub fn visit(&mut self, krate: &ast::Crate) {
|
2014-05-18 08:56:13 -05:00
|
|
|
self.attrs = krate.attrs.clone();
|
2014-01-07 20:46:16 -06:00
|
|
|
|
2014-02-28 19:46:09 -06:00
|
|
|
self.module = self.visit_mod_contents(krate.span,
|
2014-05-18 08:56:13 -05:00
|
|
|
krate.attrs.clone(),
|
2014-02-28 19:46:09 -06:00
|
|
|
ast::Public,
|
|
|
|
ast::CRATE_NODE_ID,
|
|
|
|
&krate.module,
|
|
|
|
None);
|
2014-07-17 11:45:31 -05:00
|
|
|
// attach the crate's exported macros to the top-level module:
|
|
|
|
self.module.macros = krate.exported_macros.iter()
|
|
|
|
.map(|it| self.visit_macro(&**it)).collect();
|
2014-02-28 15:33:45 -06:00
|
|
|
self.module.is_crate = true;
|
2014-01-07 20:46:16 -06:00
|
|
|
}
|
|
|
|
|
2014-05-18 08:56:13 -05:00
|
|
|
pub fn visit_struct_def(&mut self, item: &ast::Item,
|
|
|
|
name: ast::Ident, sd: &ast::StructDef,
|
2014-01-09 07:05:33 -06:00
|
|
|
generics: &ast::Generics) -> Struct {
|
2014-01-07 20:46:16 -06:00
|
|
|
debug!("Visiting struct");
|
2014-05-16 12:15:33 -05:00
|
|
|
let struct_type = struct_type_from_def(&*sd);
|
2014-01-07 20:46:16 -06:00
|
|
|
Struct {
|
|
|
|
id: item.id,
|
|
|
|
struct_type: struct_type,
|
2014-05-18 08:56:13 -05:00
|
|
|
name: name,
|
2014-01-07 20:46:16 -06:00
|
|
|
vis: item.vis,
|
2014-06-26 13:37:39 -05:00
|
|
|
stab: self.stability(item.id),
|
2014-05-18 08:56:13 -05:00
|
|
|
attrs: item.attrs.clone(),
|
2014-01-07 20:46:16 -06:00
|
|
|
generics: generics.clone(),
|
2014-05-18 08:56:13 -05:00
|
|
|
fields: sd.fields.clone(),
|
2014-08-11 11:32:26 -05:00
|
|
|
whence: item.span
|
2013-08-15 15:28:54 -05:00
|
|
|
}
|
2014-01-07 20:46:16 -06:00
|
|
|
}
|
2013-08-15 15:28:54 -05:00
|
|
|
|
2014-05-18 08:56:13 -05:00
|
|
|
pub fn visit_enum_def(&mut self, it: &ast::Item,
|
|
|
|
name: ast::Ident, def: &ast::EnumDef,
|
2014-01-09 07:05:33 -06:00
|
|
|
params: &ast::Generics) -> Enum {
|
2014-01-07 20:46:16 -06:00
|
|
|
debug!("Visiting enum");
|
|
|
|
Enum {
|
2014-05-18 08:56:13 -05:00
|
|
|
name: name,
|
|
|
|
variants: def.variants.iter().map(|v| Variant {
|
|
|
|
name: v.node.name,
|
|
|
|
attrs: v.node.attrs.clone(),
|
|
|
|
vis: v.node.vis,
|
|
|
|
stab: self.stability(v.node.id),
|
|
|
|
id: v.node.id,
|
|
|
|
kind: v.node.kind.clone(),
|
|
|
|
whence: v.span,
|
|
|
|
}).collect(),
|
2014-01-07 20:46:16 -06:00
|
|
|
vis: it.vis,
|
2014-06-26 13:37:39 -05:00
|
|
|
stab: self.stability(it.id),
|
2014-01-07 20:46:16 -06:00
|
|
|
generics: params.clone(),
|
2014-05-18 08:56:13 -05:00
|
|
|
attrs: it.attrs.clone(),
|
2014-01-07 20:46:16 -06:00
|
|
|
id: it.id,
|
2014-08-11 11:32:26 -05:00
|
|
|
whence: it.span,
|
2013-08-15 15:28:54 -05:00
|
|
|
}
|
2014-01-07 20:46:16 -06:00
|
|
|
}
|
2013-08-15 15:28:54 -05:00
|
|
|
|
2014-05-18 08:56:13 -05:00
|
|
|
pub fn visit_fn(&mut self, item: &ast::Item,
|
|
|
|
name: ast::Ident, fd: &ast::FnDecl,
|
2014-04-06 20:04:40 -05:00
|
|
|
fn_style: &ast::FnStyle, _abi: &abi::Abi,
|
2014-01-07 20:46:16 -06:00
|
|
|
gen: &ast::Generics) -> Function {
|
|
|
|
debug!("Visiting fn");
|
|
|
|
Function {
|
|
|
|
id: item.id,
|
|
|
|
vis: item.vis,
|
2014-06-26 13:37:39 -05:00
|
|
|
stab: self.stability(item.id),
|
2014-05-18 08:56:13 -05:00
|
|
|
attrs: item.attrs.clone(),
|
2014-01-07 20:46:16 -06:00
|
|
|
decl: fd.clone(),
|
2014-05-18 08:56:13 -05:00
|
|
|
name: name,
|
2014-08-11 11:32:26 -05:00
|
|
|
whence: item.span,
|
2014-01-07 20:46:16 -06:00
|
|
|
generics: gen.clone(),
|
2014-04-06 20:04:40 -05:00
|
|
|
fn_style: *fn_style,
|
2013-08-15 15:28:54 -05:00
|
|
|
}
|
2014-01-07 20:46:16 -06:00
|
|
|
}
|
2013-08-15 15:28:54 -05:00
|
|
|
|
2014-03-05 17:28:08 -06:00
|
|
|
pub fn visit_mod_contents(&mut self, span: Span, attrs: Vec<ast::Attribute> ,
|
2014-01-09 07:05:33 -06:00
|
|
|
vis: ast::Visibility, id: ast::NodeId,
|
|
|
|
m: &ast::Mod,
|
2013-12-22 13:23:04 -06:00
|
|
|
name: Option<ast::Ident>) -> Module {
|
2014-01-07 20:46:16 -06:00
|
|
|
let mut om = Module::new(name);
|
|
|
|
for item in m.view_items.iter() {
|
|
|
|
self.visit_view_item(item, &mut om);
|
|
|
|
}
|
2014-04-26 15:08:36 -05:00
|
|
|
om.where_outer = span;
|
|
|
|
om.where_inner = m.inner;
|
2014-01-07 20:46:16 -06:00
|
|
|
om.attrs = attrs;
|
|
|
|
om.vis = vis;
|
2014-06-26 13:37:39 -05:00
|
|
|
om.stab = self.stability(id);
|
2014-01-07 20:46:16 -06:00
|
|
|
om.id = id;
|
|
|
|
for i in m.items.iter() {
|
2014-05-18 08:56:13 -05:00
|
|
|
self.visit_item(&**i, None, &mut om);
|
2014-01-07 20:46:16 -06:00
|
|
|
}
|
|
|
|
om
|
|
|
|
}
|
|
|
|
|
2014-01-09 14:25:09 -06:00
|
|
|
pub fn visit_view_item(&mut self, item: &ast::ViewItem, om: &mut Module) {
|
|
|
|
if item.vis != ast::Public {
|
2014-01-07 20:46:16 -06:00
|
|
|
return om.view_items.push(item.clone());
|
|
|
|
}
|
2014-05-02 19:16:30 -05:00
|
|
|
let please_inline = item.attrs.iter().any(|item| {
|
|
|
|
match item.meta_item_list() {
|
|
|
|
Some(list) => {
|
|
|
|
list.iter().any(|i| i.name().get() == "inline")
|
|
|
|
}
|
|
|
|
None => false,
|
|
|
|
}
|
|
|
|
});
|
2014-01-07 20:46:16 -06:00
|
|
|
let item = match item.node {
|
2014-04-26 08:33:45 -05:00
|
|
|
ast::ViewItemUse(ref vpath) => {
|
2014-05-18 08:56:13 -05:00
|
|
|
match self.visit_view_path(&**vpath, om, please_inline) {
|
2014-01-07 20:46:16 -06:00
|
|
|
None => return,
|
|
|
|
Some(path) => {
|
2014-01-09 14:25:09 -06:00
|
|
|
ast::ViewItem {
|
2014-04-26 08:33:45 -05:00
|
|
|
node: ast::ViewItemUse(path),
|
2014-01-07 20:46:16 -06:00
|
|
|
.. item.clone()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-03-07 01:57:45 -06:00
|
|
|
ast::ViewItemExternCrate(..) => item.clone()
|
2014-01-07 20:46:16 -06:00
|
|
|
};
|
|
|
|
om.view_items.push(item);
|
|
|
|
}
|
|
|
|
|
2014-05-18 08:56:13 -05:00
|
|
|
fn visit_view_path(&mut self, path: &ast::ViewPath,
|
2014-05-02 19:16:30 -05:00
|
|
|
om: &mut Module,
|
2014-05-18 08:56:13 -05:00
|
|
|
please_inline: bool) -> Option<P<ast::ViewPath>> {
|
2014-01-07 20:46:16 -06:00
|
|
|
match path.node {
|
2014-07-25 12:16:41 -05:00
|
|
|
ast::ViewPathSimple(dst, _, id) => {
|
|
|
|
if self.resolve_id(id, Some(dst), false, om, please_inline) {
|
|
|
|
return None
|
|
|
|
}
|
2014-01-07 20:46:16 -06:00
|
|
|
}
|
2014-01-09 14:25:09 -06:00
|
|
|
ast::ViewPathList(ref p, ref paths, ref b) => {
|
2014-02-28 19:46:09 -06:00
|
|
|
let mut mine = Vec::new();
|
2014-01-07 20:46:16 -06:00
|
|
|
for path in paths.iter() {
|
2014-07-25 12:16:41 -05:00
|
|
|
if !self.resolve_id(path.node.id(), None, false, om,
|
|
|
|
please_inline) {
|
2014-01-07 20:46:16 -06:00
|
|
|
mine.push(path.clone());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if mine.len() == 0 { return None }
|
2014-05-18 08:56:13 -05:00
|
|
|
return Some(P(::syntax::codemap::Spanned {
|
2014-01-09 14:25:09 -06:00
|
|
|
node: ast::ViewPathList(p.clone(), mine, b.clone()),
|
2014-01-07 20:46:16 -06:00
|
|
|
span: path.span,
|
2014-05-18 08:56:13 -05:00
|
|
|
}))
|
2014-01-07 20:46:16 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// these are feature gated anyway
|
2014-01-09 14:25:09 -06:00
|
|
|
ast::ViewPathGlob(_, id) => {
|
2014-07-25 12:16:41 -05:00
|
|
|
if self.resolve_id(id, None, true, om, please_inline) {
|
|
|
|
return None
|
|
|
|
}
|
2013-08-15 15:28:54 -05:00
|
|
|
}
|
|
|
|
}
|
2014-05-18 08:56:13 -05:00
|
|
|
Some(P(path.clone()))
|
2014-01-07 20:46:16 -06:00
|
|
|
}
|
2013-08-15 15:28:54 -05:00
|
|
|
|
2014-07-25 12:16:41 -05:00
|
|
|
fn resolve_id(&mut self, id: ast::NodeId, renamed: Option<ast::Ident>,
|
|
|
|
glob: bool, om: &mut Module, please_inline: bool) -> bool {
|
2014-09-06 11:13:40 -05:00
|
|
|
let tcx = match self.cx.tcx_opt() {
|
|
|
|
Some(tcx) => tcx,
|
|
|
|
None => return false
|
2014-01-07 20:46:16 -06:00
|
|
|
};
|
2014-08-02 01:48:44 -05:00
|
|
|
let def = (*tcx.def_map.borrow())[id].def_id();
|
2014-01-07 20:46:16 -06:00
|
|
|
if !ast_util::is_local(def) { return false }
|
|
|
|
let analysis = match self.analysis {
|
|
|
|
Some(analysis) => analysis, None => return false
|
|
|
|
};
|
2014-05-02 19:16:30 -05:00
|
|
|
if !please_inline && analysis.public_items.contains(&def.node) {
|
|
|
|
return false
|
|
|
|
}
|
2014-09-23 17:13:56 -05:00
|
|
|
if !self.view_item_stack.insert(id) { return false }
|
2014-01-07 20:46:16 -06:00
|
|
|
|
2014-09-23 17:13:56 -05:00
|
|
|
let ret = match tcx.map.get(def.node) {
|
2014-02-13 23:07:09 -06:00
|
|
|
ast_map::NodeItem(it) => {
|
2014-01-07 20:46:16 -06:00
|
|
|
if glob {
|
|
|
|
match it.node {
|
2014-01-09 07:05:33 -06:00
|
|
|
ast::ItemMod(ref m) => {
|
2014-01-07 20:46:16 -06:00
|
|
|
for vi in m.view_items.iter() {
|
|
|
|
self.visit_view_item(vi, om);
|
|
|
|
}
|
|
|
|
for i in m.items.iter() {
|
2014-05-18 08:56:13 -05:00
|
|
|
self.visit_item(&**i, None, om);
|
2014-01-07 20:46:16 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => { fail!("glob not mapped to a module"); }
|
|
|
|
}
|
|
|
|
} else {
|
2014-05-18 08:56:13 -05:00
|
|
|
self.visit_item(it, renamed, om);
|
2013-09-26 13:57:25 -05:00
|
|
|
}
|
2014-01-07 20:46:16 -06:00
|
|
|
true
|
2013-08-15 15:28:54 -05:00
|
|
|
}
|
2014-01-07 20:46:16 -06:00
|
|
|
_ => false,
|
2014-09-23 17:13:56 -05:00
|
|
|
};
|
|
|
|
self.view_item_stack.remove(&id);
|
|
|
|
return ret;
|
2014-01-07 20:46:16 -06:00
|
|
|
}
|
2013-08-15 15:28:54 -05:00
|
|
|
|
2014-05-18 08:56:13 -05:00
|
|
|
pub fn visit_item(&mut self, item: &ast::Item,
|
|
|
|
renamed: Option<ast::Ident>, om: &mut Module) {
|
2014-01-07 20:46:16 -06:00
|
|
|
debug!("Visiting item {:?}", item);
|
2014-05-18 08:56:13 -05:00
|
|
|
let name = renamed.unwrap_or(item.ident);
|
2014-01-07 20:46:16 -06:00
|
|
|
match item.node {
|
2014-01-09 07:05:33 -06:00
|
|
|
ast::ItemMod(ref m) => {
|
2014-02-28 19:46:09 -06:00
|
|
|
om.mods.push(self.visit_mod_contents(item.span,
|
2014-05-18 08:56:13 -05:00
|
|
|
item.attrs.clone(),
|
2014-02-28 19:46:09 -06:00
|
|
|
item.vis,
|
|
|
|
item.id,
|
|
|
|
m,
|
2014-05-18 08:56:13 -05:00
|
|
|
Some(name)));
|
2014-01-07 20:46:16 -06:00
|
|
|
},
|
2014-01-09 07:05:33 -06:00
|
|
|
ast::ItemEnum(ref ed, ref gen) =>
|
2014-05-18 08:56:13 -05:00
|
|
|
om.enums.push(self.visit_enum_def(item, name, ed, gen)),
|
|
|
|
ast::ItemStruct(ref sd, ref gen) =>
|
|
|
|
om.structs.push(self.visit_struct_def(item, name, &**sd, gen)),
|
2014-05-16 12:15:33 -05:00
|
|
|
ast::ItemFn(ref fd, ref pur, ref abi, ref gen, _) =>
|
2014-05-18 08:56:13 -05:00
|
|
|
om.fns.push(self.visit_fn(item, name, &**fd, pur, abi, gen)),
|
|
|
|
ast::ItemTy(ref ty, ref gen) => {
|
2014-01-07 20:46:16 -06:00
|
|
|
let t = Typedef {
|
2014-05-18 08:56:13 -05:00
|
|
|
ty: ty.clone(),
|
2014-01-07 20:46:16 -06:00
|
|
|
gen: gen.clone(),
|
2014-05-18 08:56:13 -05:00
|
|
|
name: name,
|
2014-01-07 20:46:16 -06:00
|
|
|
id: item.id,
|
2014-05-18 08:56:13 -05:00
|
|
|
attrs: item.attrs.clone(),
|
2014-08-11 11:32:26 -05:00
|
|
|
whence: item.span,
|
2014-01-07 20:46:16 -06:00
|
|
|
vis: item.vis,
|
2014-06-26 13:37:39 -05:00
|
|
|
stab: self.stability(item.id),
|
2014-01-07 20:46:16 -06:00
|
|
|
};
|
|
|
|
om.typedefs.push(t);
|
|
|
|
},
|
2014-05-18 08:56:13 -05:00
|
|
|
ast::ItemStatic(ref ty, ref mut_, ref exp) => {
|
2014-01-07 20:46:16 -06:00
|
|
|
let s = Static {
|
2014-05-18 08:56:13 -05:00
|
|
|
type_: ty.clone(),
|
2014-01-07 20:46:16 -06:00
|
|
|
mutability: mut_.clone(),
|
|
|
|
expr: exp.clone(),
|
|
|
|
id: item.id,
|
2014-05-18 08:56:13 -05:00
|
|
|
name: name,
|
|
|
|
attrs: item.attrs.clone(),
|
2014-08-11 11:32:26 -05:00
|
|
|
whence: item.span,
|
2014-01-07 20:46:16 -06:00
|
|
|
vis: item.vis,
|
2014-06-26 13:37:39 -05:00
|
|
|
stab: self.stability(item.id),
|
2014-01-07 20:46:16 -06:00
|
|
|
};
|
|
|
|
om.statics.push(s);
|
|
|
|
},
|
2014-08-27 20:46:52 -05:00
|
|
|
ast::ItemTrait(ref gen, _, ref b, ref items) => {
|
2014-01-07 20:46:16 -06:00
|
|
|
let t = Trait {
|
2014-05-18 08:56:13 -05:00
|
|
|
name: name,
|
|
|
|
items: items.clone(),
|
2014-01-07 20:46:16 -06:00
|
|
|
generics: gen.clone(),
|
2014-08-27 20:46:52 -05:00
|
|
|
bounds: b.iter().map(|x| (*x).clone()).collect(),
|
2014-01-07 20:46:16 -06:00
|
|
|
id: item.id,
|
2014-05-18 08:56:13 -05:00
|
|
|
attrs: item.attrs.clone(),
|
2014-08-11 11:32:26 -05:00
|
|
|
whence: item.span,
|
2014-01-07 20:46:16 -06:00
|
|
|
vis: item.vis,
|
2014-06-26 13:37:39 -05:00
|
|
|
stab: self.stability(item.id),
|
2014-01-07 20:46:16 -06:00
|
|
|
};
|
|
|
|
om.traits.push(t);
|
|
|
|
},
|
2014-05-18 08:56:13 -05:00
|
|
|
ast::ItemImpl(ref gen, ref tr, ref ty, ref items) => {
|
2014-01-07 20:46:16 -06:00
|
|
|
let i = Impl {
|
|
|
|
generics: gen.clone(),
|
|
|
|
trait_: tr.clone(),
|
2014-05-18 08:56:13 -05:00
|
|
|
for_: ty.clone(),
|
|
|
|
items: items.clone(),
|
|
|
|
attrs: item.attrs.clone(),
|
2014-01-07 20:46:16 -06:00
|
|
|
id: item.id,
|
2014-08-11 11:32:26 -05:00
|
|
|
whence: item.span,
|
2014-01-07 20:46:16 -06:00
|
|
|
vis: item.vis,
|
2014-06-26 13:37:39 -05:00
|
|
|
stab: self.stability(item.id),
|
2014-01-07 20:46:16 -06:00
|
|
|
};
|
|
|
|
om.impls.push(i);
|
|
|
|
},
|
2014-01-09 07:05:33 -06:00
|
|
|
ast::ItemForeignMod(ref fm) => {
|
2014-01-07 20:46:16 -06:00
|
|
|
om.foreigns.push(fm.clone());
|
|
|
|
}
|
2014-07-17 11:45:31 -05:00
|
|
|
ast::ItemMac(_) => {
|
|
|
|
fail!("rustdoc: macros should be gone, after expansion");
|
2014-02-16 23:40:26 -06:00
|
|
|
}
|
2014-01-07 20:46:16 -06:00
|
|
|
}
|
2013-08-15 15:28:54 -05:00
|
|
|
}
|
2014-07-17 11:45:31 -05:00
|
|
|
|
|
|
|
// convert each exported_macro into a doc item
|
|
|
|
fn visit_macro(&self, item: &ast::Item) -> Macro {
|
|
|
|
Macro {
|
|
|
|
id: item.id,
|
2014-05-18 08:56:13 -05:00
|
|
|
attrs: item.attrs.clone(),
|
2014-07-17 11:45:31 -05:00
|
|
|
name: item.ident,
|
2014-08-11 11:32:26 -05:00
|
|
|
whence: item.span,
|
2014-07-17 11:45:31 -05:00
|
|
|
stab: self.stability(item.id),
|
|
|
|
}
|
|
|
|
}
|
2013-08-15 15:28:54 -05:00
|
|
|
}
|