1
0

Continue fixing tests and implementing types

This commit is contained in:
Jeff 2023-12-01 23:47:15 -05:00
parent 07b1efd369
commit 9fd02a2118
7 changed files with 114 additions and 64 deletions

View File

@ -1,11 +1,11 @@
create_random_numbers = <fn int> |count| { create_random_numbers = <fn int> |count| {
numbers = []; numbers = []
while (length numbers) < count { while (length numbers) < count {
numbers += (random_integer) numbers += (random_integer)
} }
(output "Made " + count + " numbers.") (output "Made " + (length numbers) + " numbers.")
} }
(output "This will print first.") (output "This will print first.")

View File

@ -4,7 +4,7 @@ use rayon::prelude::*;
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
use tree_sitter::Node; use tree_sitter::Node;
use crate::{AbstractTree, Error, Map, Result, Statement, TypeDefinition, Value}; use crate::{AbstractTree, Error, Map, Result, Statement, Type, TypeDefinition, Value};
#[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq, PartialOrd, Ord)] #[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq, PartialOrd, Ord)]
pub struct Block { pub struct Block {
@ -83,6 +83,10 @@ impl AbstractTree for Block {
} }
fn expected_type(&self, context: &Map) -> Result<TypeDefinition> { fn expected_type(&self, context: &Map) -> Result<TypeDefinition> {
if self.is_async {
Ok(TypeDefinition::new(Type::Any))
} else {
self.statements.last().unwrap().expected_type(context) self.statements.last().unwrap().expected_type(context)
} }
} }
}

View File

@ -40,61 +40,63 @@ impl TypeDefinition {
} }
pub fn runtime_check(&self, other: &TypeDefinition, context: &Map) -> Result<()> { pub fn runtime_check(&self, other: &TypeDefinition, context: &Map) -> Result<()> {
match (&self.r#type, &other.r#type) { // match (&self.r#type, &other.r#type) {
(Type::Any, _) // (Type::Any, _)
| (_, Type::Any) // | (_, Type::Any)
| (Type::Boolean, Type::Boolean) // | (Type::Boolean, Type::Boolean)
| (Type::Empty, Type::Empty) // | (Type::Empty, Type::Empty)
| (Type::Float, Type::Float) // | (Type::Float, Type::Float)
| (Type::Integer, Type::Integer) // | (Type::Integer, Type::Integer)
| (Type::Map, Type::Map) // | (Type::Map, Type::Map)
| (Type::Number, Type::Number) // | (Type::Number, Type::Number)
| (Type::Number, Type::Integer) // | (Type::Number, Type::Integer)
| (Type::Number, Type::Float) // | (Type::Number, Type::Float)
| (Type::Integer, Type::Number) // | (Type::Integer, Type::Number)
| (Type::Float, Type::Number) // | (Type::Float, Type::Number)
| (Type::String, Type::String) // | (Type::String, Type::String)
| (Type::Table, Type::Table) => Ok(()), // | (Type::Table, Type::Table) => Ok(()),
(Type::List(self_item_type), Type::List(other_item_type)) => { // (Type::List(self_item_type), Type::List(other_item_type)) => {
let self_defintion = TypeDefinition::new(self_item_type.as_ref().clone()); // let self_defintion = TypeDefinition::new(self_item_type.as_ref().clone());
let other_definition = &TypeDefinition::new(other_item_type.as_ref().clone()); // let other_definition = &TypeDefinition::new(other_item_type.as_ref().clone());
self_defintion.runtime_check(other_definition, context) // self_defintion.runtime_check(other_definition, context)
} // }
( // (
Type::Function { // Type::Function {
parameter_types: self_parameter_types, // parameter_types: self_parameter_types,
return_type: self_return_type, // return_type: self_return_type,
}, // },
Type::Function { // Type::Function {
parameter_types: other_parameter_types, // parameter_types: other_parameter_types,
return_type: other_return_type, // return_type: other_return_type,
}, // },
) => { // ) => {
let parameter_type_pairs = self_parameter_types // let parameter_type_pairs = self_parameter_types
.iter() // .iter()
.zip(other_parameter_types.iter()); // .zip(other_parameter_types.iter());
for (self_parameter_type, other_parameter_type) in parameter_type_pairs { // for (self_parameter_type, other_parameter_type) in parameter_type_pairs {
TypeDefinition::new(self_parameter_type.clone()).runtime_check( // TypeDefinition::new(self_parameter_type.clone()).runtime_check(
&TypeDefinition::new(other_parameter_type.clone()), // &TypeDefinition::new(other_parameter_type.clone()),
context, // context,
)?; // )?;
} // }
TypeDefinition::new(self_return_type.as_ref().clone()).runtime_check( // TypeDefinition::new(self_return_type.as_ref().clone()).runtime_check(
&TypeDefinition::new(other_return_type.as_ref().clone()), // &TypeDefinition::new(other_return_type.as_ref().clone()),
context, // context,
)?; // )?;
// Ok(())
// }
// _ => Err(Error::RuntimeTypeCheck {
// expected: self.clone(),
// actual: other.clone(),
// }),
// }
Ok(()) Ok(())
} }
_ => Err(Error::RuntimeTypeCheck {
expected: self.clone(),
actual: other.clone(),
}),
}
}
} }
impl AbstractTree for TypeDefinition { impl AbstractTree for TypeDefinition {

View File

@ -0,0 +1,24 @@
use crate::{BuiltInFunction, Error, Map, Result, Type, TypeDefinition, Value};
pub struct Length;
impl BuiltInFunction for Length {
fn name(&self) -> &'static str {
"length"
}
fn run(&self, arguments: &[Value], _context: &Map) -> Result<Value> {
Error::expect_argument_amount(self, 1, arguments.len())?;
let length = arguments.first().unwrap().as_list()?.items().len();
Ok(Value::Integer(length as i64))
}
fn type_definition(&self) -> TypeDefinition {
TypeDefinition::new(Type::Function {
parameter_types: vec![Type::List(Box::new(Type::Any))],
return_type: Box::new(Type::Integer),
})
}
}

View File

@ -4,7 +4,7 @@ use std::{
path::PathBuf, path::PathBuf,
}; };
use crate::{BuiltInFunction, List, Map, Result, Value}; use crate::{BuiltInFunction, List, Map, Result, Type, TypeDefinition, Value};
pub struct Read; pub struct Read;
@ -47,8 +47,11 @@ impl BuiltInFunction for Read {
Ok(Value::String(file_content)) Ok(Value::String(file_content))
} }
fn type_definition(&self) -> crate::TypeDefinition { fn type_definition(&self) -> TypeDefinition {
todo!() TypeDefinition::new(Type::Function {
parameter_types: vec![Type::String],
return_type: Box::new(Type::String),
})
} }
} }
@ -69,7 +72,10 @@ impl BuiltInFunction for Write {
} }
fn type_definition(&self) -> crate::TypeDefinition { fn type_definition(&self) -> crate::TypeDefinition {
todo!() TypeDefinition::new(Type::Function {
parameter_types: vec![Type::String],
return_type: Box::new(Type::Empty),
})
} }
} }
@ -94,6 +100,9 @@ impl BuiltInFunction for Append {
} }
fn type_definition(&self) -> crate::TypeDefinition { fn type_definition(&self) -> crate::TypeDefinition {
todo!() TypeDefinition::new(Type::Function {
parameter_types: vec![Type::String, Type::String],
return_type: Box::new(Type::Empty),
})
} }
} }

View File

@ -1,15 +1,17 @@
use crate::{Map, Result, TypeDefinition, Value}; use crate::{Map, Result, TypeDefinition, Value};
mod assert; mod assert;
mod collections;
mod data_formats; mod data_formats;
mod fs; mod fs;
mod output; mod output;
mod random; mod random;
mod r#type; mod r#type;
pub const BUILT_IN_FUNCTIONS: [&dyn BuiltInFunction; 13] = [ pub const BUILT_IN_FUNCTIONS: [&dyn BuiltInFunction; 14] = [
&assert::Assert, &assert::Assert,
&assert::AssertEqual, &assert::AssertEqual,
&collections::Length,
&data_formats::FromJson, &data_formats::FromJson,
&data_formats::ToJson, &data_formats::ToJson,
&fs::Read, &fs::Read,

View File

@ -10,7 +10,7 @@ impl BuiltInFunction for Random {
} }
fn run(&self, arguments: &[Value], _context: &Map) -> Result<Value> { fn run(&self, arguments: &[Value], _context: &Map) -> Result<Value> {
Error::expect_argument_minimum(self, 1, arguments.len())?; Error::expect_argument_amount(self, 1, arguments.len())?;
let list = arguments.first().unwrap().as_list()?; let list = arguments.first().unwrap().as_list()?;
let items = list.items(); let items = list.items();
@ -42,7 +42,10 @@ impl BuiltInFunction for RandomInteger {
} }
fn type_definition(&self) -> crate::TypeDefinition { fn type_definition(&self) -> crate::TypeDefinition {
todo!() TypeDefinition::new(Type::Function {
parameter_types: Vec::with_capacity(0),
return_type: Box::new(Type::Integer),
})
} }
} }
@ -60,7 +63,10 @@ impl BuiltInFunction for RandomFloat {
} }
fn type_definition(&self) -> crate::TypeDefinition { fn type_definition(&self) -> crate::TypeDefinition {
todo!() TypeDefinition::new(Type::Function {
parameter_types: Vec::with_capacity(0),
return_type: Box::new(Type::Float),
})
} }
} }
@ -78,6 +84,9 @@ impl BuiltInFunction for RandomBoolean {
} }
fn type_definition(&self) -> crate::TypeDefinition { fn type_definition(&self) -> crate::TypeDefinition {
todo!() TypeDefinition::new(Type::Function {
parameter_types: Vec::with_capacity(0),
return_type: Box::new(Type::Boolean),
})
} }
} }