Add documentation on ast::Attribute
This commit is contained in:
parent
096277e989
commit
33009601af
1 changed files with 46 additions and 0 deletions
|
@ -136,6 +136,13 @@ impl Attribute {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Returns a list of meta items if the attribute is delimited with parenthesis:
|
||||||
|
///
|
||||||
|
/// ```text
|
||||||
|
/// #[attr(a, b = "c")] // Returns `Some()`.
|
||||||
|
/// #[attr = ""] // Returns `None`.
|
||||||
|
/// #[attr] // Returns `None`.
|
||||||
|
/// ```
|
||||||
pub fn meta_item_list(&self) -> Option<ThinVec<MetaItemInner>> {
|
pub fn meta_item_list(&self) -> Option<ThinVec<MetaItemInner>> {
|
||||||
match &self.kind {
|
match &self.kind {
|
||||||
AttrKind::Normal(normal) => normal.item.meta_item_list(),
|
AttrKind::Normal(normal) => normal.item.meta_item_list(),
|
||||||
|
@ -143,6 +150,21 @@ impl Attribute {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Returns the string value in:
|
||||||
|
///
|
||||||
|
/// ```text
|
||||||
|
/// #[attribute = "value"]
|
||||||
|
/// ^^^^^^^
|
||||||
|
/// ```
|
||||||
|
///
|
||||||
|
/// It returns `None` in any other cases, including doc comments if they
|
||||||
|
/// are not under the form `#[doc = "..."]`.
|
||||||
|
///
|
||||||
|
/// It also returns `None` for:
|
||||||
|
///
|
||||||
|
/// ```text
|
||||||
|
/// #[attr("value")]
|
||||||
|
/// ```
|
||||||
pub fn value_str(&self) -> Option<Symbol> {
|
pub fn value_str(&self) -> Option<Symbol> {
|
||||||
match &self.kind {
|
match &self.kind {
|
||||||
AttrKind::Normal(normal) => normal.item.value_str(),
|
AttrKind::Normal(normal) => normal.item.value_str(),
|
||||||
|
@ -232,6 +254,18 @@ impl AttrItem {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Returns the string value in:
|
||||||
|
///
|
||||||
|
/// ```text
|
||||||
|
/// #[attribute = "value"]
|
||||||
|
/// ^^^^^^^
|
||||||
|
/// ```
|
||||||
|
///
|
||||||
|
/// It returns `None` in any other cases like:
|
||||||
|
///
|
||||||
|
/// ```text
|
||||||
|
/// #[attr("value")]
|
||||||
|
/// ```
|
||||||
fn value_str(&self) -> Option<Symbol> {
|
fn value_str(&self) -> Option<Symbol> {
|
||||||
match &self.args {
|
match &self.args {
|
||||||
AttrArgs::Eq(_, args) => args.value_str(),
|
AttrArgs::Eq(_, args) => args.value_str(),
|
||||||
|
@ -315,6 +349,18 @@ impl MetaItem {
|
||||||
Some(self.name_value_literal()?.span)
|
Some(self.name_value_literal()?.span)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Returns the string value in:
|
||||||
|
///
|
||||||
|
/// ```text
|
||||||
|
/// #[attribute = "value"]
|
||||||
|
/// ^^^^^^^
|
||||||
|
/// ```
|
||||||
|
///
|
||||||
|
/// It returns `None` in any other cases like:
|
||||||
|
///
|
||||||
|
/// ```text
|
||||||
|
/// #[attr("value")]
|
||||||
|
/// ```
|
||||||
pub fn value_str(&self) -> Option<Symbol> {
|
pub fn value_str(&self) -> Option<Symbol> {
|
||||||
match &self.kind {
|
match &self.kind {
|
||||||
MetaItemKind::NameValue(v) => v.kind.str(),
|
MetaItemKind::NameValue(v) => v.kind.str(),
|
||||||
|
|
Loading…
Add table
Reference in a new issue