use crate::{ context::Context, error::{RuntimeError, ValidationError}, }; use super::{AbstractTree, Action, Expression, Statement, Type}; #[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Ord)] pub struct IfElse { if_expression: Expression, if_statement: Box, else_statement: Option>, } impl IfElse { pub fn new( if_expression: Expression, if_statement: Statement, else_statement: Option, ) -> Self { Self { if_expression, if_statement: Box::new(if_statement), else_statement: else_statement.map(|statement| Box::new(statement)), } } } impl AbstractTree for IfElse { fn expected_type(&self, _context: &Context) -> Result { Ok(Type::None) } fn validate(&self, _context: &Context) -> Result<(), ValidationError> { if let Type::Boolean = self.if_expression.expected_type(_context)? { Ok(()) } else { Err(ValidationError::ExpectedBoolean) } } fn run(self, _context: &Context) -> Result { let if_boolean = self .if_expression .run(_context)? .as_return_value()? .as_boolean()?; if if_boolean { self.if_statement.run(_context) } else if let Some(else_statement) = self.else_statement { else_statement.run(_context) } else { Ok(Action::None) } } } #[cfg(test)] mod tests { use crate::{ abstract_tree::{Action, ValueNode}, context::Context, Value, }; use super::*; #[test] fn simple_if() { assert_eq!( IfElse::new( Expression::Value(ValueNode::Boolean(true)), Statement::Expression(Expression::Value(ValueNode::String("foo".to_string()))), None ) .run(&Context::new()), Ok(Action::Return(Value::string("foo"))) ) } #[test] fn simple_if_else() { assert_eq!( IfElse::new( Expression::Value(ValueNode::Boolean(false)), Statement::Expression(Expression::Value(ValueNode::String("foo".to_string()))), Some(Statement::Expression(Expression::Value(ValueNode::String( "bar".to_string() )))) ) .run(&Context::new()), Ok(Action::Return(Value::string("bar"))) ) } }