Files
mgmt/lang/interpret_test/TestAstFunc2/lookup5.txtar
James Shubin d46c43df5a lang: core: Let lookup function specialize earlier
If we happen to know some information, we can specialize early and help
type unification solve things.
2025-01-26 18:21:54 -05:00

23 lines
468 B
Plaintext

-- main.mcl --
# FIXME: We'd instead love to do this during type unification with a callback or
# similar, but at least for now we can handle some common cases.
$bigmap = {
1 => {
42 => "thing1a",
13 => "thing1b",
},
2 => {
42 => "hello", # pull out this!
13 => "thing2b",
},
}
$key = 2
#$inner map{str: str} = $bigmap[$key] # does unify with the type hint!
$inner = $bigmap[$key] # doesn't unify!
test [$inner[42],] {}
-- OUTPUT --
Vertex: test[hello]