2024-02-29 02:04:38 +00:00
|
|
|
use crate::{
|
|
|
|
error::{RuntimeError, ValidationError},
|
|
|
|
value::Value,
|
|
|
|
Context,
|
|
|
|
};
|
2024-02-25 18:49:26 +00:00
|
|
|
|
2024-02-29 02:04:38 +00:00
|
|
|
use super::{AbstractTree, Identifier, Statement, Type};
|
2024-02-25 18:49:26 +00:00
|
|
|
|
2024-02-25 19:26:22 +00:00
|
|
|
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Ord)]
|
2024-02-26 21:27:01 +00:00
|
|
|
pub struct Assignment<'src> {
|
2024-02-28 22:49:46 +00:00
|
|
|
identifier: Identifier,
|
2024-02-29 02:04:38 +00:00
|
|
|
r#type: Option<Type>,
|
2024-02-26 21:27:01 +00:00
|
|
|
statement: Box<Statement<'src>>,
|
2024-02-25 18:49:26 +00:00
|
|
|
}
|
|
|
|
|
2024-02-26 21:27:01 +00:00
|
|
|
impl<'src> Assignment<'src> {
|
2024-02-29 02:04:38 +00:00
|
|
|
pub fn new(identifier: Identifier, r#type: Option<Type>, statement: Statement<'src>) -> Self {
|
2024-02-25 18:49:26 +00:00
|
|
|
Self {
|
|
|
|
identifier,
|
2024-02-29 02:04:38 +00:00
|
|
|
r#type,
|
2024-02-25 18:49:26 +00:00
|
|
|
statement: Box::new(statement),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-26 21:27:01 +00:00
|
|
|
impl<'src> AbstractTree for Assignment<'src> {
|
2024-02-29 02:04:38 +00:00
|
|
|
fn expected_type(&self, _context: &Context) -> Result<Type, ValidationError> {
|
|
|
|
todo!()
|
|
|
|
}
|
|
|
|
|
2024-03-06 17:15:03 +00:00
|
|
|
fn validate(&self, context: &Context) -> Result<(), ValidationError> {
|
2024-03-06 23:15:25 +00:00
|
|
|
let statement_type = self.statement.expected_type(context)?;
|
2024-03-06 17:15:03 +00:00
|
|
|
|
2024-03-06 23:15:25 +00:00
|
|
|
if let Some(expected) = &self.r#type {
|
2024-03-06 17:15:03 +00:00
|
|
|
expected.check(&statement_type)?;
|
2024-03-06 23:15:25 +00:00
|
|
|
|
|
|
|
context.set_type(self.identifier.clone(), expected.clone())?;
|
|
|
|
} else {
|
|
|
|
context.set_type(self.identifier.clone(), statement_type)?;
|
2024-03-06 17:15:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
2024-02-29 02:04:38 +00:00
|
|
|
}
|
|
|
|
|
2024-03-02 00:15:03 +00:00
|
|
|
fn run(self, context: &Context) -> Result<Value, RuntimeError> {
|
|
|
|
let value = self.statement.run(context)?;
|
2024-02-25 18:49:26 +00:00
|
|
|
|
2024-03-06 23:15:25 +00:00
|
|
|
context.set_value(self.identifier, value)?;
|
2024-02-25 18:49:26 +00:00
|
|
|
|
2024-03-02 00:15:03 +00:00
|
|
|
Ok(Value::none())
|
2024-02-25 18:49:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2024-03-06 17:15:03 +00:00
|
|
|
use crate::{
|
|
|
|
abstract_tree::{Expression, ValueNode},
|
|
|
|
error::TypeCheckError,
|
|
|
|
};
|
2024-03-02 00:15:03 +00:00
|
|
|
|
|
|
|
use super::*;
|
2024-02-25 18:49:26 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn assign_value() {
|
2024-03-02 00:15:03 +00:00
|
|
|
let context = Context::new();
|
2024-02-26 21:27:01 +00:00
|
|
|
|
2024-03-02 00:15:03 +00:00
|
|
|
Assignment::new(
|
|
|
|
Identifier::new("foobar"),
|
|
|
|
None,
|
|
|
|
Statement::Expression(Expression::Value(ValueNode::Integer(42))),
|
|
|
|
)
|
|
|
|
.run(&context)
|
|
|
|
.unwrap();
|
2024-02-26 21:27:01 +00:00
|
|
|
|
2024-03-02 00:15:03 +00:00
|
|
|
assert_eq!(
|
2024-03-06 23:15:25 +00:00
|
|
|
context.get_value(&Identifier::new("foobar")),
|
2024-03-02 00:15:03 +00:00
|
|
|
Ok(Some(Value::integer(42)))
|
|
|
|
)
|
2024-02-25 18:49:26 +00:00
|
|
|
}
|
2024-03-06 17:15:03 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn type_check() {
|
|
|
|
let validation = Assignment::new(
|
|
|
|
Identifier::new("foobar"),
|
|
|
|
Some(Type::Boolean),
|
|
|
|
Statement::Expression(Expression::Value(ValueNode::Integer(42))),
|
|
|
|
)
|
|
|
|
.validate(&Context::new());
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
validation,
|
|
|
|
Err(ValidationError::TypeCheck(TypeCheckError {
|
|
|
|
actual: Type::Integer,
|
|
|
|
expected: Type::Boolean
|
|
|
|
}))
|
|
|
|
)
|
|
|
|
}
|
2024-02-25 18:49:26 +00:00
|
|
|
}
|