Lines Matching refs:error

4 ;; error-context.new
9 (import "" "error-context.new" (func $error-context-new (param i32 i32) (result i32)))
11 (core func $error-context-new (canon error-context.new (memory $libc "memory")))
12 …(core instance $i (instantiate $m (with "" (instance (export "error-context.new" (func $error-cont…
15 ;; error-context.debug-message
23 (import "" "error-context.debug-message" (func $error-context-debug-message (param i32 i32)))
25 …(core func $error-context-debug-message (canon error-context.debug-message (memory $libc "memory")…
26 …instance $i (instantiate $m (with "" (instance (export "error-context.debug-message" (func $error-…
29 ;; error-context.drop
32 (import "" "error-context.drop" (func $error-context-drop (param i32)))
34 (core func $error-context-drop (canon error-context.drop))
35 …(core instance $i (instantiate $m (with "" (instance (export "error-context.drop" (func $error-con…
38 ;; Test edge-case behavior of `error-context.debug-message`.
57 (import "" "error-context.new" (func $error-context.new (param i32 i32) (result i32)))
58 (import "" "error-context.debug-message" (func $error-context.debug-message (param i32 i32)))
59 (import "" "error-context.drop" (func $error-context.drop (param i32)))
64 (local.set $handle (call $error-context.new (i32.const 0) (i32.const 1)))
65 (call $error-context.debug-message (local.get $handle) (local.get $dst))
66 (call $error-context.drop (local.get $handle))
70 (core func $error-context.new (canon error-context.new (memory $libc "memory")))
71 …(core func $error-context.debug-message (canon error-context.debug-message (memory $libc "memory")…
72 (core func $error-context.drop (canon error-context.drop))
76 (export "error-context.new" (func $error-context.new))
77 (export "error-context.debug-message" (func $error-context.debug-message))
78 (export "error-context.drop" (func $error-context.drop))