use crate::{ context::Context, error::{RuntimeError, ValidationError}, value::ValueInner, }; use super::{AbstractTree, Action, Expression, Type, WithPosition}; #[derive(Debug, Clone, Eq, PartialEq, PartialOrd, Ord)] pub struct FunctionCall { function: Box>, arguments: Vec>, } impl FunctionCall { pub fn new( function: WithPosition, arguments: Vec>, ) -> Self { FunctionCall { function: Box::new(function), arguments, } } } impl AbstractTree for FunctionCall { fn expected_type(&self, _context: &Context) -> Result { let function_node_type = self.function.node.expected_type(_context)?; if let Type::Function { return_type, .. } = function_node_type { Ok(*return_type) } else { Err(ValidationError::ExpectedFunction { actual: function_node_type, position: self.function.position, }) } } fn validate(&self, _context: &Context) -> Result<(), ValidationError> { let function_node_type = self.function.node.expected_type(_context)?; if let Type::Function { .. } = function_node_type { Ok(()) } else { Err(ValidationError::ExpectedFunction { actual: function_node_type, position: self.function.position, }) } } fn run(self, context: &Context) -> Result { let value = self.function.node.run(context)?.as_return_value()?; let function = if let ValueInner::Function(function) = value.inner().as_ref() { function } else { return Err(RuntimeError::ValidationFailure( ValidationError::ExpectedFunction { actual: value.r#type(), position: self.function.position, }, )); }; let mut arguments = Vec::with_capacity(self.arguments.len()); for expression in self.arguments { let value = expression.node.run(context)?.as_return_value()?; arguments.push(value); } let function_context = Context::new(); function_context.inherit_data_from(&context)?; function.clone().call(arguments, function_context) } }