rune/ast/
expr_range.rs
1use crate::ast::prelude::*;
2
3#[test]
4#[cfg(not(miri))]
5fn ast_parse() {
6 rt::<ast::ExprRange>("0..42");
7 rt::<ast::ExprRange>("0..=42");
8 rt::<ast::ExprRange>("0..=a + 2");
9}
10
11#[derive(Debug, TryClone, PartialEq, Eq, ToTokens, Spanned)]
15#[non_exhaustive]
16pub struct ExprRange {
17 #[rune(iter)]
19 pub attributes: Vec<ast::Attribute>,
20 #[rune(iter)]
22 pub start: Option<Box<ast::Expr>>,
23 pub limits: ExprRangeLimits,
25 #[rune(iter)]
27 pub end: Option<Box<ast::Expr>>,
28}
29
30#[derive(Debug, TryClone, PartialEq, Eq, ToTokens, Spanned)]
32#[non_exhaustive]
33pub enum ExprRangeLimits {
34 HalfOpen(T![..]),
36 Closed(T![..=]),
38}
39
40impl Parse for ExprRangeLimits {
41 fn parse(p: &mut Parser<'_>) -> Result<Self> {
42 Ok(match p.nth(0)? {
43 K![..] => Self::HalfOpen(p.parse()?),
44 K![..=] => Self::Closed(p.parse()?),
45 _ => return Err(compile::Error::expected(p.tok_at(0)?, "range limits")),
46 })
47 }
48}
49
50expr_parse!(Range, ExprRange, "range expression");