WebAssembly / wasm-c-api

Wasm C API prototype
Apache License 2.0
537 stars 77 forks source link

Fix life times of host info #96

Closed rossberg closed 5 years ago

rossberg commented 5 years ago

Use V8's Managed values to represent finalized host data. This way, it gets properly freed when the associated store is deleted.

Fixes #74.

@PiotrSikora, FYI.

jakobkummerow commented 5 years ago

Note that this does not resolve the issue where someone could call set_host_info on a Func and clobber internal metadata.

rossberg commented 5 years ago

Created #100 to track that issue.