Y
Hacker News
new
|
ask
|
show
|
jobs
by
AshleysBrain
1237 days ago
How does this handle garbage collection? AFAIK the WebAssembly GC proposal is still in development. Does it implement GC in WASM code?
1 comments
amelius
1237 days ago
Perhaps it just uses Python's built-in garbage collector that just increases/decreases the data segment size as needed by calling sbrk()?
link
ridruejo
1237 days ago
Correct, it is just CPython compiled to Wasm (similar to compiling to x86 or arm)
link