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

134 lines
4.6 KiB
Rust
Raw Normal View History

use dust_lang::*;
use smallvec::smallvec;
#[test]
fn function() {
let source = "fn(a: int, b: int) -> int { a + b }";
assert_eq!(
run(source),
2024-12-04 05:04:56 +00:00
Ok(Some(ConcreteValue::function(Chunk::with_data(
2024-11-11 00:28:21 +00:00
None,
2024-11-16 10:16:51 +00:00
FunctionType {
type_parameters: None,
value_parameters: None,
return_type: Type::function(FunctionType {
2024-11-16 10:16:51 +00:00
type_parameters: None,
value_parameters: Some(smallvec![(0, Type::Integer), (1, Type::Integer)]),
return_type: Type::Integer,
})
2024-11-16 10:16:51 +00:00
},
2024-11-11 00:28:21 +00:00
vec![
(
Instruction::add(2, Argument::Register(0), Argument::Register(1)),
Span(30, 31)
),
2024-12-03 18:35:47 +00:00
(Instruction::r#return(true), Span(34, 35)),
2024-11-11 00:28:21 +00:00
],
2024-11-16 06:29:21 +00:00
vec![ConcreteValue::string("a"), ConcreteValue::string("b"),],
2024-11-11 00:28:21 +00:00
vec![
Local::new(0, 0, false, Scope::default()),
Local::new(1, 1, false, Scope::default())
2024-11-11 00:28:21 +00:00
]
))))
);
}
#[test]
fn function_call() {
let source = "fn(a: int, b: int) -> int { a + b }(1, 2)";
assert_eq!(
2024-11-06 20:40:37 +00:00
compile(source),
Ok(Chunk::with_data(
None,
2024-11-16 10:16:51 +00:00
FunctionType {
type_parameters: None,
value_parameters: None,
return_type: Type::Integer
2024-11-16 10:16:51 +00:00
},
vec![
(Instruction::load_constant(0, 0, false), Span(0, 35)),
(Instruction::load_constant(1, 1, false), Span(36, 37)),
(Instruction::load_constant(2, 2, false), Span(39, 40)),
(Instruction::call(3, Argument::Constant(0), 2), Span(35, 41)),
(Instruction::r#return(true), Span(41, 41)),
],
vec![
2024-12-04 05:04:56 +00:00
ConcreteValue::function(Chunk::with_data(
2024-11-11 00:28:21 +00:00
None,
2024-11-16 10:16:51 +00:00
FunctionType {
type_parameters: None,
value_parameters: Some(smallvec![(0, Type::Integer), (1, Type::Integer)]),
return_type: Type::Integer
2024-11-16 10:16:51 +00:00
},
2024-11-11 00:28:21 +00:00
vec![
(
Instruction::add(2, Argument::Register(0), Argument::Register(1)),
Span(30, 31)
),
2024-12-03 18:35:47 +00:00
(Instruction::r#return(true), Span(34, 35)),
2024-11-11 00:28:21 +00:00
],
2024-11-16 06:29:21 +00:00
vec![ConcreteValue::string("a"), ConcreteValue::string("b"),],
2024-11-11 00:28:21 +00:00
vec![
Local::new(0, 0, false, Scope::default()),
Local::new(1, 1, false, Scope::default())
2024-11-11 00:28:21 +00:00
]
)),
2024-11-16 06:29:21 +00:00
ConcreteValue::Integer(1),
ConcreteValue::Integer(2)
],
vec![]
)),
);
assert_eq!(run(source), Ok(Some(ConcreteValue::Integer(3))));
}
#[test]
fn function_declaration() {
let source = "fn add (a: int, b: int) -> int { a + b }";
assert_eq!(
2024-11-06 20:40:37 +00:00
compile(source),
Ok(Chunk::with_data(
None,
2024-11-16 10:16:51 +00:00
FunctionType {
type_parameters: None,
value_parameters: None,
return_type: Type::None
2024-11-16 10:16:51 +00:00
},
vec![
(Instruction::load_constant(0, 0, false), Span(0, 40)),
(Instruction::r#return(false), Span(40, 40))
],
vec![
2024-12-04 05:04:56 +00:00
ConcreteValue::function(Chunk::with_data(
Some("add".into()),
2024-11-16 10:16:51 +00:00
FunctionType {
type_parameters: None,
value_parameters: Some(smallvec![(0, Type::Integer), (1, Type::Integer)]),
return_type: Type::Integer
2024-11-16 10:16:51 +00:00
},
2024-11-11 00:28:21 +00:00
vec![
(
Instruction::add(2, Argument::Register(0), Argument::Register(1)),
Span(35, 36)
),
2024-12-03 18:35:47 +00:00
(Instruction::r#return(true), Span(39, 40)),
2024-11-11 00:28:21 +00:00
],
2024-11-16 06:29:21 +00:00
vec![ConcreteValue::string("a"), ConcreteValue::string("b")],
2024-11-11 00:28:21 +00:00
vec![
Local::new(0, 0, false, Scope::default()),
Local::new(1, 1, false, Scope::default())
2024-11-11 00:28:21 +00:00
]
2024-11-16 10:16:51 +00:00
)),
ConcreteValue::string("add"),
],
vec![Local::new(1, 0, false, Scope::default(),),],
)),
);
assert_eq!(run(source), Ok(None));
}