Closed stylewarning closed 2 months ago
When return is present in code, the return itself "loses" the function it intended to return from. The return is blindly inlined into the function above it, wreaking all kinds of havoc.
return
One trouble we have is that inlining is happening on Coalton ASTs, and there's no node that represents something like a CL block.
When
return
is present in code, thereturn
itself "loses" the function it intended to return from. Thereturn
is blindly inlined into the function above it, wreaking all kinds of havoc.