frg 2.1.0

Compiled programming language with frogs!
use super::{TreeCursor, Expression, expressions};

pub fn parse(cursor: &mut TreeCursor, code: &str) -> Expression {
    cursor.goto_first_child();

    // skip "void"
    cursor.goto_next_sibling();

    let expr = expressions::parse(cursor, code);

    cursor.goto_parent();

    expr
}

pub fn transpile(expr: &Expression) -> String {
    let expr_str = expressions::transpile(expr);

    format!("_ = {expr_str};")
}