2023-10-06 17:32:58 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
|
2024-01-06 03:40:58 +00:00
|
|
|
use crate::{
|
2024-01-10 20:03:52 +00:00
|
|
|
AbstractTree, Error, Expression, Format, FunctionExpression, Map, Result, SyntaxNode,
|
|
|
|
SyntaxPosition, Type, Value,
|
2024-01-06 03:40:58 +00:00
|
|
|
};
|
2023-10-06 17:32:58 +00:00
|
|
|
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq, PartialOrd, Ord)]
|
2023-11-28 22:54:17 +00:00
|
|
|
pub struct FunctionCall {
|
2023-12-29 23:59:15 +00:00
|
|
|
function_expression: FunctionExpression,
|
2023-11-28 22:54:17 +00:00
|
|
|
arguments: Vec<Expression>,
|
2024-01-06 03:40:58 +00:00
|
|
|
syntax_position: SyntaxPosition,
|
2023-11-28 22:54:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl FunctionCall {
|
2024-01-06 03:40:58 +00:00
|
|
|
pub fn new(
|
|
|
|
function_expression: FunctionExpression,
|
|
|
|
arguments: Vec<Expression>,
|
|
|
|
syntax_position: SyntaxPosition,
|
|
|
|
) -> Self {
|
2023-11-28 22:54:17 +00:00
|
|
|
Self {
|
2023-12-02 07:34:23 +00:00
|
|
|
function_expression,
|
2023-11-28 22:54:17 +00:00
|
|
|
arguments,
|
2024-01-06 03:40:58 +00:00
|
|
|
syntax_position,
|
2023-11-28 22:54:17 +00:00
|
|
|
}
|
|
|
|
}
|
2023-10-09 19:54:47 +00:00
|
|
|
}
|
|
|
|
|
2023-10-06 17:32:58 +00:00
|
|
|
impl AbstractTree for FunctionCall {
|
2024-01-10 20:03:52 +00:00
|
|
|
fn from_syntax(node: SyntaxNode, source: &str, context: &Map) -> Result<Self> {
|
2023-12-29 23:59:15 +00:00
|
|
|
Error::expect_syntax_node(source, "function_call", node)?;
|
2023-10-06 17:32:58 +00:00
|
|
|
|
2023-12-30 01:14:03 +00:00
|
|
|
let function_node = node.child(0).unwrap();
|
2024-01-10 20:03:52 +00:00
|
|
|
let function_expression = FunctionExpression::from_syntax(function_node, source, context)?;
|
2023-11-28 22:54:17 +00:00
|
|
|
|
2023-10-09 19:54:47 +00:00
|
|
|
let mut arguments = Vec::new();
|
2023-10-06 17:32:58 +00:00
|
|
|
|
2023-11-15 00:38:19 +00:00
|
|
|
for index in 2..node.child_count() - 1 {
|
2023-11-30 03:54:46 +00:00
|
|
|
let child = node.child(index).unwrap();
|
2023-10-06 17:32:58 +00:00
|
|
|
|
2023-11-30 03:54:46 +00:00
|
|
|
if child.is_named() {
|
2024-01-10 20:03:52 +00:00
|
|
|
let expression = Expression::from_syntax(child, source, context)?;
|
2023-10-06 17:32:58 +00:00
|
|
|
|
2023-10-11 16:07:30 +00:00
|
|
|
arguments.push(expression);
|
|
|
|
}
|
2023-10-06 17:32:58 +00:00
|
|
|
}
|
|
|
|
|
2023-12-12 23:21:16 +00:00
|
|
|
Ok(FunctionCall {
|
2023-12-02 07:34:23 +00:00
|
|
|
function_expression,
|
2023-11-28 22:54:17 +00:00
|
|
|
arguments,
|
2024-01-06 03:40:58 +00:00
|
|
|
syntax_position: node.range().into(),
|
2023-12-12 23:21:16 +00:00
|
|
|
})
|
2023-11-28 22:54:17 +00:00
|
|
|
}
|
|
|
|
|
2024-01-10 01:38:40 +00:00
|
|
|
fn check_type(&self, source: &str, context: &Map) -> Result<()> {
|
2024-01-04 00:57:06 +00:00
|
|
|
let function_expression_type = self.function_expression.expected_type(context)?;
|
2024-01-06 01:02:29 +00:00
|
|
|
|
|
|
|
let parameter_types = match function_expression_type {
|
|
|
|
Type::Function {
|
|
|
|
parameter_types, ..
|
|
|
|
} => parameter_types,
|
|
|
|
Type::Any => return Ok(()),
|
|
|
|
_ => {
|
|
|
|
return Err(Error::TypeCheckExpectedFunction {
|
|
|
|
actual: function_expression_type,
|
2024-01-10 01:38:40 +00:00
|
|
|
}
|
|
|
|
.at_source_position(source, self.syntax_position))
|
2024-01-06 01:02:29 +00:00
|
|
|
}
|
2024-01-04 00:57:06 +00:00
|
|
|
};
|
|
|
|
|
2024-01-25 09:45:25 +00:00
|
|
|
if self.arguments.len() != parameter_types.len() {
|
|
|
|
return Err(Error::ExpectedFunctionArgumentAmount {
|
|
|
|
expected: parameter_types.len(),
|
2024-01-04 00:57:06 +00:00
|
|
|
actual: self.arguments.len(),
|
2024-01-25 09:45:25 +00:00
|
|
|
}
|
|
|
|
.at_source_position(source, self.syntax_position));
|
2024-01-10 01:38:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (index, expression) in self.arguments.iter().enumerate() {
|
|
|
|
if let Some(r#type) = parameter_types.get(index) {
|
2024-01-25 09:45:25 +00:00
|
|
|
r#type
|
|
|
|
.check(&expression.expected_type(context)?)
|
|
|
|
.map_err(|error| error.at_source_position(source, self.syntax_position))?;
|
2024-01-10 01:38:40 +00:00
|
|
|
}
|
2024-01-04 00:57:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2023-11-30 00:23:42 +00:00
|
|
|
fn run(&self, source: &str, context: &Map) -> Result<Value> {
|
2024-01-17 20:12:37 +00:00
|
|
|
let value = match &self.function_expression {
|
2023-12-29 23:59:15 +00:00
|
|
|
FunctionExpression::Identifier(identifier) => {
|
2023-12-02 07:34:23 +00:00
|
|
|
let key = identifier.inner();
|
|
|
|
let variables = context.variables()?;
|
2023-12-05 22:40:22 +00:00
|
|
|
|
2023-12-09 22:15:41 +00:00
|
|
|
if let Some((value, _)) = variables.get(key) {
|
2024-01-17 20:12:37 +00:00
|
|
|
value.clone()
|
2023-12-02 07:34:23 +00:00
|
|
|
} else {
|
2024-01-28 22:46:15 +00:00
|
|
|
return Err(Error::VariableIdentifierNotFound(
|
2023-12-10 18:47:05 +00:00
|
|
|
identifier.inner().clone(),
|
|
|
|
));
|
2023-12-02 07:34:23 +00:00
|
|
|
}
|
2023-11-18 01:10:07 +00:00
|
|
|
}
|
2023-12-29 23:59:15 +00:00
|
|
|
FunctionExpression::FunctionCall(function_call) => {
|
2024-01-17 20:12:37 +00:00
|
|
|
function_call.run(source, context)?
|
2023-12-29 23:59:15 +00:00
|
|
|
}
|
2024-01-17 20:12:37 +00:00
|
|
|
FunctionExpression::Value(value_node) => value_node.run(source, context)?,
|
|
|
|
FunctionExpression::Index(index) => index.run(source, context)?,
|
|
|
|
FunctionExpression::Yield(r#yield) => r#yield.run(source, context)?,
|
2023-11-30 16:05:09 +00:00
|
|
|
};
|
2023-10-07 01:00:31 +00:00
|
|
|
|
2023-12-18 00:06:36 +00:00
|
|
|
let mut arguments = Vec::with_capacity(self.arguments.len());
|
|
|
|
|
|
|
|
for expression in &self.arguments {
|
|
|
|
let value = expression.run(source, context)?;
|
|
|
|
|
|
|
|
arguments.push(value);
|
|
|
|
}
|
|
|
|
|
2024-01-17 20:12:37 +00:00
|
|
|
value.as_function()?.call(&arguments, source, context)
|
2023-10-06 17:32:58 +00:00
|
|
|
}
|
2023-11-30 00:23:42 +00:00
|
|
|
|
2023-12-05 22:08:22 +00:00
|
|
|
fn expected_type(&self, context: &Map) -> Result<Type> {
|
2023-12-02 07:34:23 +00:00
|
|
|
match &self.function_expression {
|
2023-12-29 23:59:15 +00:00
|
|
|
FunctionExpression::Identifier(identifier) => {
|
2023-12-26 22:52:44 +00:00
|
|
|
let identifier_type = identifier.expected_type(context)?;
|
|
|
|
|
|
|
|
if let Type::Function {
|
|
|
|
parameter_types: _,
|
|
|
|
return_type,
|
|
|
|
} = &identifier_type
|
|
|
|
{
|
|
|
|
Ok(*return_type.clone())
|
|
|
|
} else {
|
|
|
|
Ok(identifier_type)
|
|
|
|
}
|
2023-12-17 02:15:36 +00:00
|
|
|
}
|
2023-12-29 23:59:15 +00:00
|
|
|
FunctionExpression::FunctionCall(function_call) => function_call.expected_type(context),
|
2024-01-01 09:59:27 +00:00
|
|
|
FunctionExpression::Value(value_node) => {
|
|
|
|
let value_type = value_node.expected_type(context)?;
|
|
|
|
|
|
|
|
if let Type::Function { return_type, .. } = value_type {
|
|
|
|
Ok(*return_type)
|
|
|
|
} else {
|
|
|
|
Ok(value_type)
|
|
|
|
}
|
|
|
|
}
|
2023-12-30 00:22:41 +00:00
|
|
|
FunctionExpression::Index(index) => index.expected_type(context),
|
2023-12-30 02:15:03 +00:00
|
|
|
FunctionExpression::Yield(r#yield) => r#yield.expected_type(context),
|
2023-12-02 03:16:50 +00:00
|
|
|
}
|
2023-11-30 00:23:42 +00:00
|
|
|
}
|
2023-10-06 17:32:58 +00:00
|
|
|
}
|
2024-01-06 10:00:36 +00:00
|
|
|
|
2024-01-06 13:11:09 +00:00
|
|
|
impl Format for FunctionCall {
|
|
|
|
fn format(&self, output: &mut String, indent_level: u8) {
|
|
|
|
self.function_expression.format(output, indent_level);
|
|
|
|
output.push('(');
|
2024-01-06 10:00:36 +00:00
|
|
|
|
2024-01-06 13:11:09 +00:00
|
|
|
for expression in &self.arguments {
|
|
|
|
expression.format(output, indent_level);
|
2024-01-06 10:00:36 +00:00
|
|
|
}
|
|
|
|
|
2024-01-06 13:11:09 +00:00
|
|
|
output.push(')');
|
2024-01-06 10:00:36 +00:00
|
|
|
}
|
|
|
|
}
|