├── .github └── workflows │ └── go-test.yaml ├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.md ├── example ├── go.mod ├── go.sum └── hello.go ├── go.mod ├── go.work ├── go.work.sum ├── imports.go ├── imports_webassembly.go ├── internal ├── Makefile ├── e2e │ ├── Makefile │ ├── README.md │ ├── __console_log │ │ └── main.go │ └── go.mod ├── e2e_test.go ├── go.mod ├── go.sum └── host_test.go └── wapc.go /.github/workflows/go-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-guest-tinygo/HEAD/.github/workflows/go-test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.wasm 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-guest-tinygo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-guest-tinygo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-guest-tinygo/HEAD/README.md -------------------------------------------------------------------------------- /example/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-guest-tinygo/HEAD/example/go.mod -------------------------------------------------------------------------------- /example/go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-guest-tinygo/HEAD/example/hello.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-guest-tinygo/HEAD/go.mod -------------------------------------------------------------------------------- /go.work: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-guest-tinygo/HEAD/go.work -------------------------------------------------------------------------------- /go.work.sum: -------------------------------------------------------------------------------- 1 | github.com/stretchr/objx v0.5.2/go.mod h1:FRsXN1f5AsAjCGJKqEizvkpNtU+EGNCLh3NxZ/8L+MA= 2 | -------------------------------------------------------------------------------- /imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-guest-tinygo/HEAD/imports.go -------------------------------------------------------------------------------- /imports_webassembly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-guest-tinygo/HEAD/imports_webassembly.go -------------------------------------------------------------------------------- /internal/Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | go test -v ./... 3 | -------------------------------------------------------------------------------- /internal/e2e/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-guest-tinygo/HEAD/internal/e2e/Makefile -------------------------------------------------------------------------------- /internal/e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-guest-tinygo/HEAD/internal/e2e/README.md -------------------------------------------------------------------------------- /internal/e2e/__console_log/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-guest-tinygo/HEAD/internal/e2e/__console_log/main.go -------------------------------------------------------------------------------- /internal/e2e/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-guest-tinygo/HEAD/internal/e2e/go.mod -------------------------------------------------------------------------------- /internal/e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-guest-tinygo/HEAD/internal/e2e_test.go -------------------------------------------------------------------------------- /internal/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-guest-tinygo/HEAD/internal/go.mod -------------------------------------------------------------------------------- /internal/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-guest-tinygo/HEAD/internal/go.sum -------------------------------------------------------------------------------- /internal/host_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-guest-tinygo/HEAD/internal/host_test.go -------------------------------------------------------------------------------- /wapc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-guest-tinygo/HEAD/wapc.go --------------------------------------------------------------------------------