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

78 lines
2.4 KiB
Rust
Raw Permalink Normal View History

2024-11-01 00:33:46 +00:00
use dust_lang::*;
#[test]
fn and() {
let source = "true && false";
assert_eq!(
2024-11-06 20:40:37 +00:00
compile(source),
2024-11-01 00:33:46 +00:00
Ok(Chunk::with_data(
None,
vec![
(Instruction::load_boolean(0, true, false), Span(0, 4)),
(Instruction::test(0, false), Span(5, 7)),
(Instruction::jump(1, true), Span(5, 7)),
(Instruction::load_boolean(1, false, false), Span(8, 13)),
(Instruction::r#return(true), Span(13, 13)),
],
vec![],
vec![]
))
);
2024-11-11 00:28:21 +00:00
assert_eq!(run(source), Ok(Some(ValueOwned::boolean(false))));
2024-11-01 00:33:46 +00:00
}
#[test]
fn or() {
let source = "true || false";
assert_eq!(
2024-11-06 20:40:37 +00:00
compile(source),
2024-11-01 00:33:46 +00:00
Ok(Chunk::with_data(
None,
vec![
(Instruction::load_boolean(0, true, false), Span(0, 4)),
(Instruction::test(0, true), Span(5, 7)),
(Instruction::jump(1, true), Span(5, 7)),
(Instruction::load_boolean(1, false, false), Span(8, 13)),
(Instruction::r#return(true), Span(13, 13)),
],
vec![],
vec![]
))
);
2024-11-11 00:28:21 +00:00
assert_eq!(run(source), Ok(Some(ValueOwned::boolean(true))));
2024-11-01 00:33:46 +00:00
}
2024-11-05 21:33:56 +00:00
#[test]
fn variable_and() {
let source = "let a = true; let b = false; a && b";
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_boolean(0, true, false), Span(8, 12)),
(Instruction::define_local(0, 0, false), Span(4, 5)),
(Instruction::load_boolean(1, false, false), Span(22, 27)),
(Instruction::define_local(1, 1, false), Span(18, 19)),
(Instruction::get_local(2, 0), Span(29, 30)),
(Instruction::test(2, false), Span(31, 33)),
(Instruction::jump(1, true), Span(31, 33)),
(Instruction::get_local(3, 1), Span(34, 35)),
(Instruction::r#return(true), Span(35, 35)),
],
2024-11-11 00:28:21 +00:00
vec![ValueOwned::string("a"), ValueOwned::string("b"),],
2024-11-05 21:33:56 +00:00
vec![
Local::new(0, Type::Boolean, false, Scope::default()),
Local::new(1, Type::Boolean, false, 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::boolean(false))));
2024-11-05 21:33:56 +00:00
}