1 2 3 4 5 6 7
use crate::{Expression, Parser, ParserResult}; impl Parser<'_> { pub fn parse_try_expression(&mut self, left: Expression) -> ParserResult<Expression> { Ok(Expression::Try(left.into())) } }