use crate::ast::prelude::*;
#[test]
#[cfg(not(miri))]
fn ast_parse() {
rt::<ast::ItemImpl>("impl Foo {}");
rt::<ast::ItemImpl>("impl Foo { fn test(self) { } }");
rt::<ast::ItemImpl>(
"#[variant(enum_= \"SuperHero\", x = \"1\")] impl Foo { fn test(self) { } }",
);
rt::<ast::ItemImpl>("#[xyz] impl Foo { #[jit] fn test(self) { } }");
}
#[derive(Debug, TryClone, PartialEq, Eq, ToTokens, Spanned)]
#[non_exhaustive]
pub struct ItemImpl {
#[rune(iter)]
pub attributes: Vec<ast::Attribute>,
pub impl_: T![impl],
pub path: ast::Path,
pub open: T!['{'],
#[rune(iter)]
pub functions: Vec<ast::ItemFn>,
pub close: T!['}'],
}
impl ItemImpl {
pub(crate) fn parse_with_attributes(
parser: &mut Parser<'_>,
attributes: Vec<ast::Attribute>,
) -> Result<Self> {
let impl_ = parser.parse()?;
let path = parser.parse()?;
let open = parser.parse()?;
let mut functions = Vec::new();
while !parser.peek::<ast::CloseBrace>()? {
functions.try_push(ast::ItemFn::parse(parser)?)?;
}
let close = parser.parse()?;
Ok(Self {
attributes,
impl_,
path,
open,
functions,
close,
})
}
}
item_parse!(Impl, ItemImpl, "impl item");