;;; TOOL: wat-desugar ;;; FLAGS: --enable-exceptions (module (except $ex i32) (export "except" (except $ex)) (func (result i32) (i32.const 7) (throw $ex) ) ) (;; STDOUT ;;; (module (except $ex i32) (export "except" (except $ex)) (func (;0;) (result i32) i32.const 7 throw $ex) (type (;0;) (func (result i32)))) ;;; STDOUT ;;)