From: Mazdak Farrokhzad Date: Sat, 15 Feb 2020 01:34:19 +0000 (+0100) Subject: ast: make ForeignItemKind an alias of AssocItemKind X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=91110fda27b2d227a5c5b20e3be01a47f7e39910;p=rust.git ast: make ForeignItemKind an alias of AssocItemKind --- diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index 5041d43b16c..a931d8c27ba 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -2600,35 +2600,8 @@ pub fn generics(&self) -> Option<&Generics> { } } -pub type ForeignItem = Item; - -/// An item within an `extern` block. -#[derive(Clone, RustcEncodable, RustcDecodable, Debug)] -pub enum ForeignItemKind { - /// A constant, `const $ident: $ty $def?;` where `def ::= "=" $expr? ;`. - /// If `def` is parsed, then the constant is provided, and otherwise required. - Const(P, Option>), - /// A static item (`static FOO: u8`). - Static(P, Mutability, Option>), - /// A function. - Fn(FnSig, Generics, Option>), - /// A type. - TyAlias(Generics, GenericBounds, Option>), - /// A macro expanding to an item. - Macro(Mac), -} - -impl ForeignItemKind { - pub fn descriptive_variant(&self) -> &str { - match *self { - ForeignItemKind::Fn(..) => "foreign function", - ForeignItemKind::Const(..) => "foreign const item", - ForeignItemKind::Static(..) => "foreign static item", - ForeignItemKind::TyAlias(..) => "foreign type", - ForeignItemKind::Macro(..) => "macro in foreign module", - } - } -} +pub type ForeignItem = Item; +pub type ForeignItemKind = AssocItemKind; /// Represents associated items. /// These include items in `impl` and `trait` definitions. @@ -2646,7 +2619,7 @@ pub struct AssocItem { pub tokens: Option, } -/// Represents various kinds of content within an `impl`. +/// Represents non-free item kinds. /// /// The term "provided" in the variants below refers to the item having a default /// definition / body. Meanwhile, a "required" item lacks a definition / body.