aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/internal/wasi/cli/v0.2.0/stdout
diff options
context:
space:
mode:
Diffstat (limited to 'src/internal/wasi/cli/v0.2.0/stdout')
-rwxr-xr-xsrc/internal/wasi/cli/v0.2.0/stdout/stdout.wasm.go9
-rw-r--r--src/internal/wasi/cli/v0.2.0/stdout/stdout.wit.go13
2 files changed, 16 insertions, 6 deletions
diff --git a/src/internal/wasi/cli/v0.2.0/stdout/stdout.wasm.go b/src/internal/wasi/cli/v0.2.0/stdout/stdout.wasm.go
new file mode 100755
index 000000000..68e4a3dac
--- /dev/null
+++ b/src/internal/wasi/cli/v0.2.0/stdout/stdout.wasm.go
@@ -0,0 +1,9 @@
+// Code generated by wit-bindgen-go. DO NOT EDIT.
+
+package stdout
+
+// This file contains wasmimport and wasmexport declarations for "wasi:[email protected]".
+
+//go:wasmimport wasi:cli/[email protected] get-stdout
+//go:noescape
+func wasmimport_GetStdout() (result0 uint32)
diff --git a/src/internal/wasi/cli/v0.2.0/stdout/stdout.wit.go b/src/internal/wasi/cli/v0.2.0/stdout/stdout.wit.go
index 4a7007f0e..a9934fe2f 100644
--- a/src/internal/wasi/cli/v0.2.0/stdout/stdout.wit.go
+++ b/src/internal/wasi/cli/v0.2.0/stdout/stdout.wit.go
@@ -8,17 +8,18 @@ import (
"internal/wasi/io/v0.2.0/streams"
)
+// OutputStream represents the imported type alias "wasi:cli/[email protected]#output-stream".
+//
+// See [streams.OutputStream] for more information.
+type OutputStream = streams.OutputStream
+
// GetStdout represents the imported function "get-stdout".
//
// get-stdout: func() -> output-stream
//
//go:nosplit
-func GetStdout() (result streams.OutputStream) {
+func GetStdout() (result OutputStream) {
result0 := wasmimport_GetStdout()
- result = cm.Reinterpret[streams.OutputStream]((uint32)(result0))
+ result = cm.Reinterpret[OutputStream]((uint32)(result0))
return
}
-
-//go:wasmimport wasi:cli/[email protected] get-stdout
-//go:noescape
-func wasmimport_GetStdout() (result0 uint32)