dust/dust-lang/tests/variables.rs

37 lines
878 B
Rust
Raw Normal View History

2024-03-07 04:21:07 +00:00
use dust_lang::{
abstract_tree::{Block, Expression, Statement, WithPos},
2024-03-25 04:16:55 +00:00
identifier::Identifier,
Type, *,
2024-03-07 04:21:07 +00:00
};
2024-03-06 23:15:25 +00:00
#[test]
fn set_and_get_variable() {
2024-03-08 17:24:11 +00:00
assert_eq!(
2024-03-24 19:35:19 +00:00
interpret("test", "foobar = true; foobar"),
2024-03-08 17:24:11 +00:00
Ok(Some(Value::boolean(true)))
);
2024-03-06 23:15:25 +00:00
}
2024-03-07 04:21:07 +00:00
#[test]
fn set_variable_with_type() {
assert_eq!(
2024-03-24 19:35:19 +00:00
interpret("test", "foobar: bool = true; foobar"),
2024-03-08 17:24:11 +00:00
Ok(Some(Value::boolean(true)))
2024-03-07 04:21:07 +00:00
);
}
2024-03-09 00:05:17 +00:00
#[test]
fn function_variable() {
assert_eq!(
2024-06-19 02:03:41 +00:00
interpret("test", "foobar = fn (x: int) -> int { x }; foobar"),
2024-03-09 00:05:17 +00:00
Ok(Some(Value::function(
2024-06-19 02:03:41 +00:00
None,
2024-06-24 02:39:33 +00:00
Some(vec![(Identifier::new("x"), Type::Integer)]),
2024-06-22 04:58:30 +00:00
Some(Type::Integer),
2024-06-17 19:47:07 +00:00
Block::new(vec![Statement::Expression(Expression::Identifier(
2024-06-19 02:03:41 +00:00
Identifier::new("x").with_position((30, 31))
2024-06-22 17:55:43 +00:00
))]),
2024-03-09 00:05:17 +00:00
)))
);
}