Get correct type of a binding

master
Araozu 2023-02-10 12:51:10 -05:00
parent 8aba492f15
commit cfbb86ab68
1 changed files with 40 additions and 20 deletions

View File

@ -1,3 +1,6 @@
use crate::ast_types::Expression;
use crate::symbol_table::{_STRING, _BOOLEAN};
use super::symbol_table::{SymbolTable, _NUMBER}; use super::symbol_table::{SymbolTable, _NUMBER};
use super::ast_types::{ModuleAST, Binding}; use super::ast_types::{ModuleAST, Binding};
@ -7,43 +10,48 @@ pub fn check_ast<'a>(ast: &'a mut ModuleAST, symbol_table: &'a mut SymbolTable)
match binding { match binding {
Binding::Val(val_binding) => { Binding::Val(val_binding) => {
// TODO: create a function to get the datatype, instead of a hardcoded value // TODO: create a function to get the datatype, instead of a hardcoded value
symbol_table.add(val_binding.identifier, _NUMBER); symbol_table.add(
val_binding.identifier,
get_expression_type(&val_binding.expression).as_str()
);
} }
Binding::Var(var_binding) => { Binding::Var(var_binding) => {
// TODO: create a function to get the datatype, instead of a hardcoded value // TODO: create a function to get the datatype, instead of a hardcoded value
symbol_table.add(var_binding.identifier, _NUMBER); symbol_table.add(
var_binding.identifier,
get_expression_type(&var_binding.expression).as_str(),
);
} }
} }
} }
} }
fn get_expression_type(exp: &Expression) -> String {
match exp {
Expression::Number(_) => String::from(_NUMBER),
Expression::String(_) => String::from(_STRING),
Expression::Boolean(_) => String::from(_BOOLEAN),
}
}
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {
use crate::symbol_table::_BOOLEAN;
use crate::symbol_table::_STRING;
use crate::syntax; use crate::syntax;
use crate::lexic; use crate::lexic;
use super::*; use super::*;
/* fn test_type(input: String, datatype: &str) -> bool {
val identifier = 20 let tokens = lexic::get_tokens(&input).unwrap();
let mut table = SymbolTable::new();
let mut ast = syntax::construct_ast(&tokens).unwrap();
[Binding] check_ast(&mut ast, &mut table);
| identifier
| [Expression]
| [Number]
| 20
- Check [Expression] is valid table.check_type("a", datatype)
- Check type of [Expression]
- Check if `identifier` already exists in the symbol table
- Create entry in symbol table
->
SymbolTable {
identifier: Num
} }
*/
#[test] #[test]
fn should_update_symbol_table() { fn should_update_symbol_table() {
@ -56,4 +64,16 @@ mod tests {
let result = table.test("identifier"); let result = table.test("identifier");
assert_eq!(true, result); assert_eq!(true, result);
} }
#[test]
fn should_get_correct_type() {
assert!(test_type(String::from("val a = 322"), _NUMBER));
assert!(test_type(String::from("var a = 322"), _NUMBER));
assert!(test_type(String::from("val a = \"str\" "), _STRING));
assert!(test_type(String::from("var a = \"str\" "), _STRING));
assert!(test_type(String::from("val a = false"), _BOOLEAN));
assert!(test_type(String::from("var a = true"), _BOOLEAN));
}
} }