use crate::ast::prelude::*;
#[test]
#[cfg(not(miri))]
fn ast_parse() {
rt::<ast::ExprIf>("if 0 { }");
rt::<ast::ExprIf>("if 0 { } else { }");
rt::<ast::ExprIf>("if 0 { } else if 0 { } else { }");
rt::<ast::ExprIf>("if let v = v { }");
rt::<ast::ExprIf>("#[attr] if 1 {} else {}");
}
#[derive(Debug, TryClone, PartialEq, Eq, Parse, ToTokens, Spanned)]
#[rune(parse = "meta_only")]
#[non_exhaustive]
pub struct ExprIf {
#[rune(iter, meta)]
pub attributes: Vec<ast::Attribute>,
pub if_: T![if],
pub condition: Box<ast::Condition>,
pub block: Box<ast::Block>,
#[rune(iter)]
pub expr_else_ifs: Vec<ExprElseIf>,
#[rune(iter)]
pub expr_else: Option<ExprElse>,
}
expr_parse!(If, ExprIf, "if expression");
#[derive(Debug, TryClone, PartialEq, Eq, ToTokens, Parse, Spanned)]
#[non_exhaustive]
pub struct ExprElseIf {
pub else_: T![else],
pub if_: T![if],
pub condition: Box<ast::Condition>,
pub block: Box<ast::Block>,
}
impl Peek for ExprElseIf {
fn peek(p: &mut Peeker<'_>) -> bool {
matches!((p.nth(0), p.nth(1)), (K![else], K![if]))
}
}
#[derive(Debug, TryClone, PartialEq, Eq, ToTokens, Parse, Spanned)]
#[non_exhaustive]
pub struct ExprElse {
pub else_: T![else],
pub block: Box<ast::Block>,
}
impl Peek for ExprElse {
fn peek(p: &mut Peeker<'_>) -> bool {
matches!(p.nth(0), K![else])
}
}