mumu 0.10.0

Lava Mumu is a language for those in the now and that know
Documentation
1
2
3
4
5
6
7
8
9
// FILE: src/parser/core/expr.rs

use crate::parser::ast::Expr;
use super::precedence::*;

pub fn parse_expression(parser: &mut super::utils::Parser) -> Result<Expr, super::driver::ParseError> {
    // All position handling is now in the precedence modules and ast node constructors.
    parse_ternary(parser)
}