TFA has suboptimal handling of tearoffs #39688
Labels
area-vm
Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends.
type-performance
Issue relates to performance or code size
We currently treat any method tearoff as an all-dynamic call to the function.
We can instead treat the tearoff as an inline closure
(a, b, ...) => m.foo(a, b, ...)
to at least regain some information about the parameters./cc @alexmarkov @mkustermann
The text was updated successfully, but these errors were encountered: