From 23af2b1455829cd88600bf7fefbe026395496070 Mon Sep 17 00:00:00 2001 From: greg Date: Thu, 22 Feb 2018 19:59:53 -0800 Subject: [PATCH] Some more type-checking work --- src/schala_lang/typechecking.rs | 41 ++++++++++++++++++++++++++++----- 1 file changed, 35 insertions(+), 6 deletions(-) diff --git a/src/schala_lang/typechecking.rs b/src/schala_lang/typechecking.rs index 424bfa0..3414155 100644 --- a/src/schala_lang/typechecking.rs +++ b/src/schala_lang/typechecking.rs @@ -9,13 +9,14 @@ pub struct TypeContext { #[derive(Debug, PartialEq, Clone)] pub enum Type { - Unit, Const(TConst), + Func(Vec), Void } #[derive(Debug, PartialEq, Clone)] pub enum TConst { + Unit, Int, Float, StringT, @@ -30,8 +31,8 @@ impl TypeContext { TypeContext { bindings: HashMap::new() } } pub fn type_check_ast(&mut self, ast: &parsing::AST) -> TypeResult { - use self::Type::*; - let mut ret_type = Unit; + use self::Type::*; use self::TConst::*; + let mut ret_type = Const(Unit); for statement in ast.0.iter() { ret_type = self.type_check_statement(statement)?; } @@ -42,7 +43,7 @@ impl TypeContext { use self::parsing::Statement::*; match statement { - &ExpressionStatement(ref expr) => self.type_infer(expr), + &ExpressionStatement(ref expr) => self.infer(expr), &Declaration(ref decl) => self.add_declaration(decl), } } @@ -51,14 +52,14 @@ impl TypeContext { use self::Type::*; match decl { &Binding { ref name, ref expr, .. } => { - let ty = self.type_infer(expr)?; + let ty = self.infer(expr)?; self.bindings.insert(name.clone(), ty); }, _ => return Err(format!("other formats not done")) } Ok(Void) } - fn type_infer(&mut self, expr: &parsing::Expression) -> TypeResult { + fn infer(&mut self, expr: &parsing::Expression) -> TypeResult { use self::parsing::Expression; match expr { &Expression(ref e, Some(ref anno)) => { @@ -77,9 +78,37 @@ impl TypeContext { &FloatLiteral(_) => Ok(Const(Float)), &StringLiteral(_) => Ok(Const(StringT)), &BoolLiteral(_) => Ok(Const(Bool)), + &BinExp(ref op, ref lhs, ref rhs) => { + let _op_ty = self.infer_optype(op); + let _lhs_ty = self.infer(lhs); + let _rhs_ty = self.infer(rhs); + Ok(Const(Unit)) + }, + /* + BinExp(Operation, Box, Box), + PrefixExp(Operation, Box), + TupleLiteral(Vec), + Value(Rc, Vec<(Rc, Expression)>), + Call { + f: Box, + arguments: Vec, + }, + Index { + indexee: Box, + indexers: Vec, + }, + IfExpression(Box, Vec, Option>), + MatchExpression(Box, Vec), + ForExpression + */ _ => Err(format!("Type not yet implemented")) } } + fn infer_optype(&mut self, _op: &parsing::Operation) -> TypeResult { + use self::Type::*; use self::TConst::*; + //this is a shim; not all ops are binops from int -> int -> int + Ok(Func(vec![Const(Int), Const(Int), Const(Int)])) + } fn type_from_anno(&mut self, anno: &parsing::TypeName) -> TypeResult { use self::parsing::TypeSingletonName; use self::parsing::TypeName::*;