In a lot of cases with Scala, such as simple, locally-scoped function invocations, one can imagine that it would often be theoretically possible get rid of the function object altogether. But AFAIK, the JVM doesn't know how to do this, and I don't think Scala does either. Correct?
Are anonymous function objects always sealed? If not, there's a pretty hard limit on how much inlining can be done. Correct?
Is anyone aware of any planned efforts that are likely to address these kinds of optimizations?
See also the related pure-Java question: Does a modern JVM optimize simple inline anonymous class allocation?
(Chanting of "don't optimize too early", "it doesn't matter", et al is very redundant at this point and not useful.)