frg 2.1.0

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

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

    let raw_variable = &code[cursor.node().byte_range()];
    let literal_kind = cursor.node().kind();

    // cursor.goto_parent();
    // todo!()
    match literal_kind {
        "int_literal" => Literal::Int(raw_variable.parse().unwrap()),
        "float_literal" => Literal::Float(raw_variable.parse().unwrap()),
        "string_literal" => Literal::Str(raw_variable[1..raw_variable.len() - 1].to_string()),
        "bool_literal" => Literal::Bool(raw_variable[0..raw_variable.len()] == *"true"),
        _ => todo!(),
    }
}

pub fn transpile(lit: &Literal) -> String {
    match lit {
        Literal::Int(int) => int.to_string(),
        Literal::Float(float) => float.to_string(),
        Literal::Str(lit_str) => format!("\"{}\"", lit_str.clone()),
        Literal::Bool(lit_bool) => (if *lit_bool { "true" } else { "false" }).to_string(),
    }
}