add inspect implementation for dict and set

This commit is contained in:
Brendan Hansknecht 2023-11-28 12:48:04 -08:00
parent 79a58843b5
commit 9b181e1b3f
No known key found for this signature in database
GPG key ID: 0EA784685083E75B
5 changed files with 1239 additions and 2 deletions

File diff suppressed because it is too large Load diff

View file

@ -3420,3 +3420,19 @@ fn inspect_derived_list() {
"#
)
}
#[mono_test(large_stack = "true")]
fn inspect_derived_dict() {
indoc!(
r#"
app "test"
imports []
provides [main] to "./platform"
main =
Dict.fromList [("a", 1), ("b", 2)]
|> Inspect.inspect
|> Inspect.toDbgStr
"#
)
}