Files
mgmt/lang/interpret_test/TestAstFunc2/test-polymorphic-func.txtar
Samuel Gélineau 1c0a98a0cc lang: ast: ExprBind is now monomorphic
This adds ExprTopLevel and ExprSingleton and ensures that ExprBind is
now monomorphic.

This corrects a previous design bug where it was not monomorphic and
would thus cause spawning of many more copies than necessary. In most
cases this was only harmful to memory and performance, and not
behaviour, since these functions were pure, and we didn't have a test
for this.

This also adds a bunch more tests. Most notably, the graph shape tests
generally produce smaller graphs now.

Lastly, a lambda cannot have two different types when used at two
different call sites. It is rare that this would be used, and when it
would make sense, there are easy workarounds to accomplish equivalent
goals.

This was mostly authored by Sam, James helped with some cleanup and
debugging.

Co-authored-by: James Shubin <james@shubin.ca>
2023-12-27 16:33:38 -05:00

11 lines
173 B
Plaintext

-- main.mcl --
import "fmt"
func double($x) {
$x + $x
}
test fmt.printf("%d", double(42)) {}
test double("hello") {}
-- OUTPUT --
Vertex: test[84]
Vertex: test[hellohello]