ralix 0.2.0

A simple, type-safe, tree walking interpreter
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()))
    }
}