schala/src/schala_lang/eval.rs

25 lines
379 B
Rust

use schala_lang::parsing::AST;
pub struct ReplState {
}
pub enum TypeCheck {
OK,
Error(String)
}
impl ReplState {
pub fn new() -> ReplState {
ReplState { }
}
pub fn evaluate(&mut self, ast: AST) -> String {
format!("Evaluated AST: {:?}", ast)
}
pub fn type_check(&mut self, ast: &AST) -> TypeCheck {
TypeCheck::Error("type lol".to_string())
}
}