1use crate::ast::prelude::*;
23#[test]
4#[cfg(not(miri))]
5fn ast_parse() {
6 rt::<ast::ItemConst>("const value = #{}");
7}
89/// A const declaration.
10#[derive(Debug, TryClone, PartialEq, Eq, Parse, ToTokens, Spanned)]
11#[rune(parse = "meta_only")]
12#[non_exhaustive]
13pub struct ItemConst {
14/// The *inner* attributes that are applied to the const declaration.
15#[rune(iter, meta)]
16pub attributes: Vec<ast::Attribute>,
17/// The visibility of the const.
18#[rune(option, meta)]
19pub visibility: ast::Visibility,
20/// The `const` keyword.
21#[rune(meta)]
22pub const_token: T![const],
23/// The name of the constant.
24pub name: ast::Ident,
25/// The equals token.
26pub eq: T![=],
27/// The optional body of the module declaration.
28pub expr: ast::Expr,
29/// Opaque identifier for the constant.
30#[rune(skip)]
31pub(crate) id: ItemId,
32}
3334impl ItemConst {
35/// Get the descriptive span of this item, e.g. `const ITEM` instead of the
36 /// span for the whole expression.
37pub(crate) fn descriptive_span(&self) -> Span {
38self.const_token.span().join(self.name.span())
39 }
40}
4142item_parse!(Const, ItemConst, "constant item");