We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 559fbce commit 154b910Copy full SHA for 154b910
runtime/wasm/fs.wat
@@ -140,6 +140,11 @@
140
(call $caml_raise_no_such_file (local.get 0))
141
(ref.i31 (i32.const 0)))
142
143
+ (func (export "caml_create_file")
144
+ (param (ref eq)) (param (ref eq)) (result (ref eq))
145
+ (call $caml_raise_no_such_file (local.get 0))
146
+ (ref.i31 (i32.const 0)))
147
+
148
(func (export "caml_fs_init") (result (ref eq))
149
150
@@ -166,4 +171,8 @@
166
171
(catch $javascript_exception
167
172
(call $caml_handle_sys_error (pop externref))
168
173
(return (ref.i31 (i32.const 0))))))
174
175
+ (func (export "caml_mount_autoload")
176
+ (param (ref eq) (ref eq)) (result (ref eq))
177
169
178
)
0 commit comments