1
0
dust/dust-lang/tests/variables.rs

68 lines
1.9 KiB
Rust
Raw Normal View History

2024-11-05 21:33:56 +00:00
use dust_lang::*;
#[test]
fn define_local() {
let source = "let x = 42;";
assert_eq!(
2024-11-06 20:40:37 +00:00
compile(source),
2024-11-05 21:33:56 +00:00
Ok(Chunk::with_data(
None,
vec![
(Instruction::load_constant(0, 0, false), Span(8, 10)),
(Instruction::define_local(0, 0, false), Span(4, 5)),
(Instruction::r#return(false), Span(11, 11))
],
2024-11-11 00:28:21 +00:00
vec![ValueOwned::integer(42), ValueOwned::string("x")],
vec![Local::new(1, Type::Integer, false, Scope::default())]
2024-11-05 21:33:56 +00:00
)),
);
assert_eq!(run(source), Ok(None));
}
#[test]
fn let_statement_expects_identifier() {
let source = "let 1 = 2";
assert_eq!(
2024-11-06 20:40:37 +00:00
compile(source),
Err(DustError::Compile {
error: CompileError::ExpectedToken {
2024-11-05 21:33:56 +00:00
expected: TokenKind::Identifier,
found: Token::Integer("1").to_owned(),
position: Span(4, 5)
},
source
})
);
}
#[test]
fn set_local() {
let source = "let mut x = 41; x = 42; x";
assert_eq!(
2024-11-06 20:40:37 +00:00
compile(source),
2024-11-05 21:33:56 +00:00
Ok(Chunk::with_data(
None,
vec![
(Instruction::load_constant(0, 0, false), Span(12, 14)),
(Instruction::define_local(0, 0, true), Span(8, 9)),
(Instruction::load_constant(1, 2, false), Span(20, 22)),
(Instruction::set_local(1, 0), Span(16, 17)),
(Instruction::get_local(2, 0), Span(24, 25)),
(Instruction::r#return(true), Span(25, 25)),
],
2024-11-11 00:28:21 +00:00
vec![
ValueOwned::integer(41),
ValueOwned::string("x"),
ValueOwned::integer(42)
],
vec![Local::new(1, Type::Integer, true, Scope::default())]
2024-11-05 21:33:56 +00:00
)),
);
2024-11-11 00:28:21 +00:00
assert_eq!(run(source), Ok(Some(ValueOwned::integer(42))));
2024-11-05 21:33:56 +00:00
}