60 lines
1.3 KiB
Rust
60 lines
1.3 KiB
Rust
use dust_lang::{abstract_tree::Identifier, *};
|
|
|
|
#[test]
|
|
fn simple_structure() {
|
|
assert_eq!(
|
|
interpret(
|
|
"
|
|
struct Foo {
|
|
bar : int,
|
|
baz : str,
|
|
}
|
|
|
|
Foo {
|
|
bar = 42,
|
|
baz = 'hiya',
|
|
}
|
|
"
|
|
),
|
|
Ok(Some(Value::structure(
|
|
Identifier::new("Foo"),
|
|
vec![
|
|
(Identifier::new("bar"), Value::integer(42)),
|
|
(Identifier::new("baz"), Value::string("hiya".to_string())),
|
|
]
|
|
)))
|
|
)
|
|
}
|
|
|
|
#[test]
|
|
fn nested_structure() {
|
|
assert_eq!(
|
|
interpret(
|
|
"
|
|
struct Bar {
|
|
baz : int
|
|
}
|
|
struct Foo {
|
|
bar : Bar
|
|
}
|
|
|
|
Foo {
|
|
bar = Bar {
|
|
baz = 42
|
|
}
|
|
}
|
|
"
|
|
),
|
|
Ok(Some(Value::structure(
|
|
Identifier::new("Foo"),
|
|
vec![(
|
|
Identifier::new("bar"),
|
|
Value::structure(
|
|
Identifier::new("Bar"),
|
|
vec![(Identifier::new("baz"), Value::integer(42))]
|
|
)
|
|
),]
|
|
)))
|
|
)
|
|
}
|