rust/src/rustdoc_ng/doctree.rs

159 lines
3.2 KiB
Rust
Raw Normal View History

2013-08-15 15:28:54 -05:00
//! This module is used to store stuff from Rust's AST in a more convenient
//! manner (and with prettier names) before cleaning.
use syntax;
2013-09-05 09:14:35 -05:00
use syntax::codemap::Span;
2013-08-15 15:28:54 -05:00
use syntax::ast;
2013-09-05 09:14:35 -05:00
use syntax::ast::{Ident, NodeId};
2013-08-15 15:28:54 -05:00
pub struct Module {
2013-09-05 09:14:35 -05:00
name: Option<Ident>,
2013-08-15 15:28:54 -05:00
attrs: ~[ast::Attribute],
2013-09-05 09:14:35 -05:00
where: Span,
2013-08-15 15:28:54 -05:00
structs: ~[Struct],
enums: ~[Enum],
fns: ~[Function],
mods: ~[Module],
id: NodeId,
typedefs: ~[Typedef],
statics: ~[Static],
traits: ~[Trait],
vis: ast::visibility,
impls: ~[Impl],
view_items: ~[ast::view_item],
}
impl Module {
2013-09-05 09:14:35 -05:00
pub fn new(name: Option<Ident>) -> Module {
2013-08-15 15:28:54 -05:00
Module {
name : name,
id: 0,
vis: ast::private,
where: syntax::codemap::dummy_sp(),
attrs : ~[],
structs : ~[],
enums : ~[],
fns : ~[],
mods : ~[],
typedefs : ~[],
statics : ~[],
traits : ~[],
impls : ~[],
view_items : ~[],
}
}
}
#[deriving(ToStr, Clone, Encodable, Decodable)]
pub enum StructType {
/// A normal struct
Plain,
/// A tuple struct
Tuple,
/// A newtype struct (tuple struct with one element)
Newtype,
/// A unit struct
Unit
}
pub enum TypeBound {
RegionBound,
TraitBound(ast::trait_ref)
}
pub struct Struct {
vis: ast::visibility,
id: NodeId,
struct_type: StructType,
2013-09-05 09:14:35 -05:00
name: Ident,
2013-08-15 15:28:54 -05:00
generics: ast::Generics,
attrs: ~[ast::Attribute],
fields: ~[@ast::struct_field],
2013-09-05 09:14:35 -05:00
where: Span,
2013-08-15 15:28:54 -05:00
}
pub struct Enum {
vis: ast::visibility,
variants: ~[Variant],
generics: ast::Generics,
attrs: ~[ast::Attribute],
id: NodeId,
2013-09-05 09:14:35 -05:00
where: Span,
name: Ident,
2013-08-15 15:28:54 -05:00
}
pub struct Variant {
2013-09-05 09:14:35 -05:00
name: Ident,
2013-08-15 15:28:54 -05:00
attrs: ~[ast::Attribute],
kind: ast::variant_kind,
id: ast::NodeId,
vis: ast::visibility,
2013-09-05 09:14:35 -05:00
where: Span,
2013-08-15 15:28:54 -05:00
}
pub struct Function {
decl: ast::fn_decl,
attrs: ~[ast::Attribute],
id: NodeId,
2013-09-05 09:14:35 -05:00
name: Ident,
2013-08-15 15:28:54 -05:00
vis: ast::visibility,
2013-09-05 09:14:35 -05:00
where: Span,
2013-08-15 15:28:54 -05:00
generics: ast::Generics,
}
pub struct Typedef {
ty: ast::Ty,
gen: ast::Generics,
2013-09-05 09:14:35 -05:00
name: Ident,
2013-08-15 15:28:54 -05:00
id: ast::NodeId,
attrs: ~[ast::Attribute],
2013-09-05 09:14:35 -05:00
where: Span,
2013-08-15 15:28:54 -05:00
vis: ast::visibility,
}
pub struct Static {
type_: ast::Ty,
2013-09-05 09:14:35 -05:00
mutability: ast::Mutability,
expr: @ast::Expr,
name: Ident,
2013-08-15 15:28:54 -05:00
attrs: ~[ast::Attribute],
vis: ast::visibility,
id: ast::NodeId,
2013-09-05 09:14:35 -05:00
where: Span,
2013-08-15 15:28:54 -05:00
}
pub struct Trait {
2013-09-05 09:14:35 -05:00
name: Ident,
2013-08-15 15:28:54 -05:00
methods: ~[ast::trait_method], //should be TraitMethod
generics: ast::Generics,
parents: ~[ast::trait_ref],
attrs: ~[ast::Attribute],
id: ast::NodeId,
2013-09-05 09:14:35 -05:00
where: Span,
2013-08-15 15:28:54 -05:00
vis: ast::visibility,
}
pub struct Impl {
generics: ast::Generics,
trait_: Option<ast::trait_ref>,
for_: ast::Ty,
methods: ~[@ast::method],
attrs: ~[ast::Attribute],
2013-09-05 09:14:35 -05:00
where: Span,
2013-08-15 15:28:54 -05:00
vis: ast::visibility,
id: ast::NodeId,
}
pub fn struct_type_from_def(sd: &ast::struct_def) -> StructType {
if sd.ctor_id.is_some() {
// We are in a tuple-struct
match sd.fields.len() {
0 => Unit,
1 => Newtype,
_ => Tuple
}
} else {
Plain
}
}