Hacker News new | ask | show | jobs
by scotth 5041 days ago
> A function can be inlined when the following constraints are met:

> ...

> * The function does not contain any activations

Does this mean that a function can't be inlined if it calls other functions?

1 comments

Activations are closures, in AS3 compiler parlance.