|
|
|
|
|
by light_hue_1
1432 days ago
|
|
This is simply false. The compiler cannot implement tail calls correctly as it stands. You do not have access to modify the WASM stack and it's not present on the heap like it is for normal programs. No compiler tricks can enable tail calls in WASM at the moment (with the exception of trampolines which always work and are absurdly slow). |
|