use crate::ast::prelude::*;
#[test]
#[cfg(not(miri))]
fn ast_parse() {
rt::<ast::ExprTuple>("()");
rt::<ast::ExprTuple>("(1,)");
rt::<ast::ExprTuple>("(1, \"two\")");
rt::<ast::ExprTuple>("(1, 2,)");
rt::<ast::ExprTuple>("(1, 2, foo())");
}
#[derive(Debug, TryClone, PartialEq, Eq, Parse, ToTokens, Spanned)]
#[non_exhaustive]
pub struct ExprTuple {
#[rune(iter, meta)]
pub attributes: Vec<ast::Attribute>,
pub items: ast::Parenthesized<ast::Expr, T![,]>,
}
impl ExprTuple {
pub(crate) fn parse_from_first_expr(
parser: &mut Parser<'_>,
attributes: Vec<ast::Attribute>,
open: ast::OpenParen,
expr: ast::Expr,
) -> Result<Self> {
Ok(Self {
attributes,
items: ast::Parenthesized::parse_from_first(parser, open, expr)?,
})
}
}