use crate::ast::prelude::*;
#[test]
#[cfg(not(miri))]
fn ast_parse() {
rt::<ast::ExprWhile>("while x {}");
rt::<ast::ExprWhile>("'label: while x {}");
rt::<ast::ExprWhile>("#[attr] 'label: while x {}");
}
#[derive(Debug, TryClone, PartialEq, Eq, Parse, ToTokens, Spanned)]
#[rune(parse = "meta_only")]
#[non_exhaustive]
pub struct ExprWhile {
#[rune(iter, meta)]
pub attributes: Vec<ast::Attribute>,
#[rune(iter, meta)]
pub label: Option<(ast::Label, T![:])>,
pub while_token: T![while],
pub condition: Box<ast::Condition>,
pub body: Box<ast::Block>,
}
expr_parse!(While, ExprWhile, "while expression");