WebAssembly / exception-handling

Proposal to add exception handling to WebAssembly
https://webassembly.github.io/exception-handling/
Other
160 stars 35 forks source link

question about labels in catch clauses #288

Closed yamt closed 8 months ago

yamt commented 8 months ago

can these labels target only block blocks? or can they be other type of blocks, like loop and try_table, and even function exit?

rossberg commented 8 months ago

Wasm doesn't distinguish label kinds, so yes, any label with the right type is allowed.

yamt commented 8 months ago

ok. thank you.

aheejin commented 8 months ago

Given that it looks resolved, will close this.