1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
use crate::ast::prelude::*;

#[test]
fn ast_parse() {
    use crate::testing::rt;

    rt::<ast::ExprWhile>("while x {}");
    rt::<ast::ExprWhile>("'label: while x {}");
    rt::<ast::ExprWhile>("#[attr] 'label: while x {}");
}

/// A `while` loop.
///
/// * `while [expr] { ... }`.
#[derive(Debug, TryClone, PartialEq, Eq, Parse, ToTokens, Spanned)]
#[rune(parse = "meta_only")]
#[non_exhaustive]
pub struct ExprWhile {
    /// The attributes for the `while` loop
    #[rune(iter, meta)]
    pub attributes: Vec<ast::Attribute>,
    /// A label for the while loop.
    #[rune(iter, meta)]
    pub label: Option<(ast::Label, T![:])>,
    /// The `while` keyword.
    pub while_token: T![while],
    /// The name of the binding.
    pub condition: Box<ast::Condition>,
    /// The body of the while loop.
    pub body: Box<ast::Block>,
}

expr_parse!(While, ExprWhile, "while expression");