logoalt Hacker News

edflsafoiewqtoday at 1:39 AM1 replyview on HN

The binding for acc in the reduce call is still active during the f call, which means there are at least two references to acc.


Replies

ndriscolltoday at 2:04 AM

Why is it still active? Even an interpreter with no lookahead could see that it goes out of scope immediately when f returns (it gets shadowed on that line), so as long as there's no guarantee about when finalizers get called, it should be able to mark it dead inside of reduce as soon as it's passed to f. Like move semantics here should be a general pattern for optimization, no?

show 1 reply