├── .github ├── CODEOWNERS ├── dependabot.yaml └── workflows │ ├── release.yaml │ └── test.yaml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DESIGN.md ├── LICENSE ├── Makefile ├── ORG_CODE_OF_CONDUCT.md ├── README.md ├── RELEASE.md ├── cm ├── CHANGELOG.md ├── README.md ├── RELEASE.md ├── abi.go ├── abi_test.go ├── case.go ├── case_test.go ├── debug_test.go ├── dependencies_test.go ├── docs.go ├── empty.s ├── error.go ├── error.wasm.go ├── future.go ├── go.mod ├── hostlayout.go ├── hostlayout_test.go ├── list.go ├── list_json.go ├── list_json_test.go ├── list_test.go ├── option.go ├── option_test.go ├── resource.go ├── result.go ├── result_test.go ├── stream.go ├── tuple.go ├── tuple_test.go ├── variant.go └── variant_test.go ├── cmd └── wit-bindgen-go │ ├── cmd │ ├── generate │ │ └── generate.go │ └── wit │ │ └── wit.go │ ├── main.go │ └── main_test.go ├── docs ├── 404.html ├── CNAME ├── README.md ├── cm.html └── index.html ├── go.mod ├── go.sum ├── go.work ├── internal ├── cmd │ └── wasm-tools │ │ └── main.go ├── codec │ ├── codec.go │ ├── constraints.go │ ├── decode.go │ ├── encode.go │ ├── helpers.go │ └── json │ │ └── decoder.go ├── go │ ├── gen │ │ ├── file.go │ │ ├── file_test.go │ │ ├── format.go │ │ ├── ident.go │ │ ├── ident_test.go │ │ ├── module.go │ │ ├── module_test.go │ │ ├── names.go │ │ └── package.go │ └── stack │ │ └── trace.go ├── memoize │ └── memoize.go ├── module │ └── module.go ├── oci │ ├── oci_other.go │ ├── oci_test.go │ └── oci_wasi_tinygo.go ├── relpath │ ├── getwd_other.go │ ├── getwd_wasip1.go │ ├── relpath.go │ └── relpath_test.go ├── stringio │ └── stringio.go ├── wasm │ ├── section.go │ ├── sleb128 │ │ ├── sleb128.go │ │ └── sleb128_test.go │ ├── uleb128 │ │ ├── uleb128.go │ │ └── uleb128_test.go │ └── wasm.go ├── wasmtools │ ├── Cargo.lock │ ├── Cargo.toml │ ├── instance.go │ ├── instance_other.go │ ├── instance_tinygo.go │ ├── src │ │ └── lib.rs │ └── wasm-tools.wasm.gz └── witcli │ ├── dir.go │ ├── dir_test.go │ ├── logger.go │ └── witcli.go ├── scripts └── extract-changelog.sh ├── testdata ├── codegen │ ├── allow-unused.wit │ ├── allow-unused.wit.json │ ├── allow-unused.wit.json.golden.wit │ ├── char.wit │ ├── char.wit.json │ ├── char.wit.json.golden.wit │ ├── conventions.wit │ ├── conventions.wit.json │ ├── conventions.wit.json.golden.wit │ ├── empty.wit │ ├── empty.wit.json │ ├── empty.wit.json.golden.wit │ ├── enum-has-go-keyword.wit │ ├── enum-has-go-keyword.wit.json │ ├── enum-has-go-keyword.wit.json.golden.wit │ ├── error-context.wit │ ├── error-context.wit.json │ ├── error-context.wit.json.golden.wit │ ├── flags.wit │ ├── flags.wit.json │ ├── flags.wit.json.golden.wit │ ├── floats.wit │ ├── floats.wit.json │ ├── floats.wit.json.golden.wit │ ├── fully-qualified-java-address.wit │ ├── fully-qualified-java-address.wit.json │ ├── fully-qualified-java-address.wit.json.golden.wit │ ├── futures.wit │ ├── futures.wit.json │ ├── futures.wit.json.golden.wit │ ├── go_params.wit │ ├── go_params.wit.json │ ├── go_params.wit.json.golden.wit │ ├── guest-name.wit │ ├── guest-name.wit.json │ ├── guest-name.wit.json.golden.wit │ ├── import-and-export-resource-alias.wit │ ├── import-and-export-resource-alias.wit.json │ ├── import-and-export-resource-alias.wit.json.golden.wit │ ├── import-and-export-resource.wit │ ├── import-and-export-resource.wit.json │ ├── import-and-export-resource.wit.json.golden.wit │ ├── import-export-same-func.wit │ ├── import-export-same-func.wit.json │ ├── import-export-same-func.wit.json.golden.wit │ ├── import-func.wit │ ├── import-func.wit.json │ ├── import-func.wit.json.golden.wit │ ├── import_export_func.wit │ ├── import_export_func.wit.json │ ├── import_export_func.wit.json.golden.wit │ ├── integers.wit │ ├── integers.wit.json │ ├── integers.wit.json.golden.wit │ ├── interface-has-go-keyword.wit │ ├── interface-has-go-keyword.wit.json │ ├── interface-has-go-keyword.wit.json.golden.wit │ ├── issue544.wit │ ├── issue544.wit.json │ ├── issue544.wit.json.golden.wit │ ├── issue551.wit │ ├── issue551.wit.json │ ├── issue551.wit.json.golden.wit │ ├── issue573.wit │ ├── issue573.wit.json │ ├── issue573.wit.json.golden.wit │ ├── issue607.wit │ ├── issue607.wit.json │ ├── issue607.wit.json.golden.wit │ ├── issue668.wit │ ├── issue668.wit.json │ ├── issue668.wit.json.golden.wit │ ├── issue929-no-export.wit │ ├── issue929-no-export.wit.json │ ├── issue929-no-export.wit.json.golden.wit │ ├── issue929-no-import.wit │ ├── issue929-no-import.wit.json │ ├── issue929-no-import.wit.json.golden.wit │ ├── issue929-only-methods.wit │ ├── issue929-only-methods.wit.json │ ├── issue929-only-methods.wit.json.golden.wit │ ├── issue929.wit │ ├── issue929.wit.json │ ├── issue929.wit.json.golden.wit │ ├── just-export.wit │ ├── just-export.wit.json │ ├── just-export.wit.json.golden.wit │ ├── keywords-in-interfaces-and-worlds.wit │ ├── keywords-in-interfaces-and-worlds.wit.json │ ├── keywords-in-interfaces-and-worlds.wit.json.golden.wit │ ├── keywords.wit │ ├── keywords.wit.json │ ├── keywords.wit.json.golden.wit │ ├── lift-lower-foreign.wit │ ├── lift-lower-foreign.wit.json │ ├── lift-lower-foreign.wit.json.golden.wit │ ├── lists.wit │ ├── lists.wit.json │ ├── lists.wit.json.golden.wit │ ├── many-arguments.wit │ ├── many-arguments.wit.json │ ├── many-arguments.wit.json.golden.wit │ ├── multi-return.wit │ ├── multi-return.wit.json │ ├── multi-return.wit.json.golden.wit │ ├── option-result.wit │ ├── option-result.wit.json │ ├── option-result.wit.json.golden.wit │ ├── record-has-go-keyword-and-used-in-fn.wit │ ├── record-has-go-keyword-and-used-in-fn.wit.json │ ├── record-has-go-keyword-and-used-in-fn.wit.json.golden.wit │ ├── records.wit │ ├── records.wit.json │ ├── records.wit.json.golden.wit │ ├── rename-interface.wit │ ├── rename-interface.wit.json │ ├── rename-interface.wit.json.golden.wit │ ├── resource-alias.wit │ ├── resource-alias.wit.json │ ├── resource-alias.wit.json.golden.wit │ ├── resource-borrow-in-record-export.wit │ ├── resource-borrow-in-record-export.wit.json │ ├── resource-borrow-in-record-export.wit.json.golden.wit │ ├── resource-borrow-in-record.wit │ ├── resource-borrow-in-record.wit.json │ ├── resource-borrow-in-record.wit.json.golden.wit │ ├── resource-local-alias-borrow-import.wit │ ├── resource-local-alias-borrow-import.wit.json │ ├── resource-local-alias-borrow-import.wit.json.golden.wit │ ├── resource-local-alias-borrow.wit │ ├── resource-local-alias-borrow.wit.json │ ├── resource-local-alias-borrow.wit.json.golden.wit │ ├── resource-local-alias.wit │ ├── resource-local-alias.wit.json │ ├── resource-local-alias.wit.json.golden.wit │ ├── resource-own-in-other-interface.wit │ ├── resource-own-in-other-interface.wit.json │ ├── resource-own-in-other-interface.wit.json.golden.wit │ ├── resources-in-aggregates.wit │ ├── resources-in-aggregates.wit.json │ ├── resources-in-aggregates.wit.json.golden.wit │ ├── resources-with-futures.wit │ ├── resources-with-futures.wit.json │ ├── resources-with-futures.wit.json.golden.wit │ ├── resources-with-lists.wit │ ├── resources-with-lists.wit.json │ ├── resources-with-lists.wit.json.golden.wit │ ├── resources-with-streams.wit │ ├── resources-with-streams.wit.json │ ├── resources-with-streams.wit.json.golden.wit │ ├── resources.wit │ ├── resources.wit.json │ ├── resources.wit.json.golden.wit │ ├── result-empty.wit │ ├── result-empty.wit.json │ ├── result-empty.wit.json.golden.wit │ ├── ret-areas.wit │ ├── ret-areas.wit.json │ ├── ret-areas.wit.json.golden.wit │ ├── return-resource-from-export.wit │ ├── return-resource-from-export.wit.json │ ├── return-resource-from-export.wit.json.golden.wit │ ├── same-names1.wit │ ├── same-names1.wit.json │ ├── same-names1.wit.json.golden.wit │ ├── same-names2.wit │ ├── same-names2.wit.json │ ├── same-names2.wit.json.golden.wit │ ├── same-names3.wit │ ├── same-names3.wit.json │ ├── same-names3.wit.json.golden.wit │ ├── same-names4.wit │ ├── same-names4.wit.json │ ├── same-names4.wit.json.golden.wit │ ├── same-names5.wit │ ├── same-names5.wit.json │ ├── same-names5.wit.json.golden.wit │ ├── simple-enum.wit │ ├── simple-enum.wit.json │ ├── simple-enum.wit.json.golden.wit │ ├── simple-functions.wit │ ├── simple-functions.wit.json │ ├── simple-functions.wit.json.golden.wit │ ├── simple-http.wit │ ├── simple-http.wit.json │ ├── simple-http.wit.json.golden.wit │ ├── simple-lists.wit │ ├── simple-lists.wit.json │ ├── simple-lists.wit.json.golden.wit │ ├── simple-option.wit │ ├── simple-option.wit.json │ ├── simple-option.wit.json.golden.wit │ ├── small-anonymous.wit │ ├── small-anonymous.wit.json │ ├── small-anonymous.wit.json.golden.wit │ ├── smoke-default.wit │ ├── smoke-default.wit.json │ ├── smoke-default.wit.json.golden.wit │ ├── smoke-export.wit │ ├── smoke-export.wit.json │ ├── smoke-export.wit.json.golden.wit │ ├── smoke.wit │ ├── smoke.wit.json │ ├── smoke.wit.json.golden.wit │ ├── streams.wit │ ├── streams.wit.json │ ├── streams.wit.json.golden.wit │ ├── strings.wit │ ├── strings.wit.json │ ├── strings.wit.json.golden.wit │ ├── unused-import.wit │ ├── unused-import.wit.json │ ├── unused-import.wit.json.golden.wit │ ├── use-across-interfaces.wit │ ├── use-across-interfaces.wit.json │ ├── use-across-interfaces.wit.json.golden.wit │ ├── variants-unioning-types.wit │ ├── variants-unioning-types.wit.json │ ├── variants-unioning-types.wit.json.golden.wit │ ├── variants.wit │ ├── variants.wit.json │ ├── variants.wit.json.golden.wit │ ├── world-has-go-keyword.wit │ ├── world-has-go-keyword.wit.json │ ├── world-has-go-keyword.wit.json.golden.wit │ ├── worlds-with-types.wit │ ├── worlds-with-types.wit.json │ ├── worlds-with-types.wit.json.golden.wit │ ├── zero-size-tuple.wit │ ├── zero-size-tuple.wit.json │ └── zero-size-tuple.wit.json.golden.wit ├── escape │ ├── escaped-names.wit │ ├── escaped-names.wit.json │ └── escaped-names.wit.json.golden.wit ├── example │ ├── aliases.wit │ ├── aliases.wit.json │ ├── aliases.wit.json.golden.wit │ ├── aqua.wit │ ├── aqua.wit.json │ ├── aqua.wit.json.golden.wit │ ├── exported-list.wit │ ├── exported-list.wit.json │ ├── exported-list.wit.json.golden.wit │ ├── exported-resource.wit │ ├── exported-resource.wit.json │ ├── exported-resource.wit.json.golden.wit │ ├── flat-flags.wit │ ├── flat-flags.wit.json │ ├── flat-flags.wit.json.golden.wit │ ├── flat-variant.wit │ ├── flat-variant.wit.json │ ├── flat-variant.wit.json.golden.wit │ ├── non-flat-params.wit │ ├── non-flat-params.wit.json │ ├── non-flat-params.wit.json.golden.wit │ ├── only-result.wit │ ├── only-result.wit.json │ ├── only-result.wit.json.golden.wit │ ├── post-return.wit │ ├── post-return.wit.json │ ├── post-return.wit.json.golden.wit │ ├── records.wit │ ├── records.wit.json │ ├── records.wit.json.golden.wit │ ├── resource-in-world.wit │ ├── resource-in-world.wit.json │ ├── resource-in-world.wit.json.golden.wit │ ├── result-param.wit │ ├── result-param.wit.json │ ├── result-param.wit.json.golden.wit │ ├── tuples.wit │ ├── tuples.wit.json │ ├── tuples.wit.json.golden.wit │ ├── use-of-export.wit │ ├── use-of-export.wit.json │ ├── use-of-export.wit.json.golden.wit │ ├── use-of-import-or-export.wit │ ├── use-of-import-or-export.wit.json │ ├── use-of-import-or-export.wit.json.golden.wit │ ├── use-of-import.wit │ ├── use-of-import.wit.json │ └── use-of-import.wit.json.golden.wit ├── go.mod ├── issues │ ├── issue163.wit │ ├── issue163.wit.json │ ├── issue163.wit.json.golden.wit │ ├── issue165.wit │ ├── issue165.wit.json │ ├── issue165.wit.json.golden.wit │ ├── issue167.wit │ ├── issue167.wit.json │ ├── issue167.wit.json.golden.wit │ ├── issue170.wit │ ├── issue170.wit.json │ ├── issue170.wit.json.golden.wit │ ├── issue175.wit │ ├── issue175.wit.json │ ├── issue175.wit.json.golden.wit │ ├── issue215.wit │ ├── issue215.wit.json │ ├── issue215.wit.json.golden.wit │ ├── issue240.wit │ ├── issue240.wit.json │ ├── issue240.wit.json.golden.wit │ ├── issue242.wit │ ├── issue242.wit.json │ ├── issue242.wit.json.golden.wit │ ├── issue264.wit │ ├── issue264.wit.json │ ├── issue264.wit.json.golden.wit │ ├── issue281.wit │ ├── issue281.wit.json │ ├── issue281.wit.json.golden.wit │ ├── issue306.wit │ ├── issue306.wit.json │ ├── issue306.wit.json.golden.wit │ ├── issue325-processed.wit │ ├── issue325-processed.wit.json │ ├── issue325-processed.wit.json.golden.wit │ ├── issue325.wit │ ├── issue325.wit.json │ ├── issue325.wit.json.golden.wit │ ├── issue344.wit │ ├── issue344.wit.json │ ├── issue344.wit.json.golden.wit │ ├── issue347.wit │ ├── issue347.wit.json │ ├── issue347.wit.json.golden.wit │ ├── issue352.wit │ ├── issue352.wit.json │ ├── issue352.wit.json.golden.wit │ ├── issue95.wit │ ├── issue95.wit.json │ └── issue95.wit.json.golden.wit ├── wasi │ ├── cli-command.wit │ ├── cli-command.wit.json │ ├── cli-command.wit.json.golden.wit │ ├── cli.wit.json │ ├── cli.wit.json.golden.wit │ ├── clocks-imports.wit │ ├── clocks-imports.wit.json │ ├── clocks-imports.wit.json.golden.wit │ ├── http-minimal.wit │ ├── http-minimal.wit.json │ ├── http-minimal.wit.json.golden.wit │ ├── http.wit.json │ └── http.wit.json.golden.wit └── wit-parser │ ├── comments.wit.json │ ├── comments.wit.json.golden.wit │ ├── complex-include.wit.json │ ├── complex-include.wit.json.golden.wit │ ├── cross-package-resource.wit.json │ ├── cross-package-resource.wit.json.golden.wit │ ├── diamond1.wit.json │ ├── diamond1.wit.json.golden.wit │ ├── disambiguate-diamond.wit.json │ ├── disambiguate-diamond.wit.json.golden.wit │ ├── embedded.wit.md.json │ ├── embedded.wit.md.json.golden.wit │ ├── empty.wit.json │ ├── empty.wit.json.golden.wit │ ├── error-context.wit.json │ ├── error-context.wit.json.golden.wit │ ├── feature-gates.wit │ ├── feature-gates.wit.json │ ├── feature-gates.wit.json.golden.wit │ ├── feature-types.wit.json │ ├── feature-types.wit.json.golden.wit │ ├── foreign-deps-union.wit.json │ ├── foreign-deps-union.wit.json.golden.wit │ ├── foreign-deps.wit.json │ ├── foreign-deps.wit.json.golden.wit │ ├── functions.wit.json │ ├── functions.wit.json.golden.wit │ ├── gated-include-use-with-stable.wit │ ├── gated-include-use-with-stable.wit.json │ ├── gated-include-use-with-stable.wit.json.golden.wit │ ├── gated-use.wit.json │ ├── gated-use.wit.json.golden.wit │ ├── ignore-files-deps.wit.json │ ├── ignore-files-deps.wit.json.golden.wit │ ├── import-export-overlap1.wit.json │ ├── import-export-overlap1.wit.json.golden.wit │ ├── import-export-overlap2.wit.json │ ├── import-export-overlap2.wit.json.golden.wit │ ├── include-reps.wit.json │ ├── include-reps.wit.json.golden.wit │ ├── kebab-name-include-with.wit.json │ ├── kebab-name-include-with.wit.json.golden.wit │ ├── kinds-of-deps.wit.json │ ├── kinds-of-deps.wit.json.golden.wit │ ├── many-names.wit.json │ ├── many-names.wit.json.golden.wit │ ├── multi-file-multi-package.wit.json │ ├── multi-file-multi-package.wit.json.golden.wit │ ├── multi-file.wit.json │ ├── multi-file.wit.json.golden.wit │ ├── multi-package-deps.wit.json │ ├── multi-package-deps.wit.json.golden.wit │ ├── multi-package-shared-deps.wit.json │ ├── multi-package-shared-deps.wit.json.golden.wit │ ├── multi-package-transitive-deps.wit.json │ ├── multi-package-transitive-deps.wit.json.golden.wit │ ├── name-both-resource-and-type.wit.json │ ├── name-both-resource-and-type.wit.json.golden.wit │ ├── package-syntax1.wit.json │ ├── package-syntax1.wit.json.golden.wit │ ├── package-syntax3.wit.json │ ├── package-syntax3.wit.json.golden.wit │ ├── package-syntax4.wit.json │ ├── package-syntax4.wit.json.golden.wit │ ├── packages-explicit-colliding-decl-names.wit.json │ ├── packages-explicit-colliding-decl-names.wit.json.golden.wit │ ├── packages-explicit-internal-references.wit.json │ ├── packages-explicit-internal-references.wit.json.golden.wit │ ├── packages-explicit-with-semver.wit.json │ ├── packages-explicit-with-semver.wit.json.golden.wit │ ├── packages-multiple-explicit.wit.json │ ├── packages-multiple-explicit.wit.json.golden.wit │ ├── packages-multiple-nested.wit.json │ ├── packages-multiple-nested.wit.json.golden.wit │ ├── packages-nested-colliding-decl-names.wit.json │ ├── packages-nested-colliding-decl-names.wit.json.golden.wit │ ├── packages-nested-internal-references.wit.json │ ├── packages-nested-internal-references.wit.json.golden.wit │ ├── packages-nested-with-semver.wit.json │ ├── packages-nested-with-semver.wit.json.golden.wit │ ├── packages-single-explicit.wit.json │ ├── packages-single-explicit.wit.json.golden.wit │ ├── packages-single-nested.wit.json │ ├── packages-single-nested.wit.json.golden.wit │ ├── random.wit.json │ ├── random.wit.json.golden.wit │ ├── resources-empty.wit.json │ ├── resources-empty.wit.json.golden.wit │ ├── resources-multiple-returns-own.wit.json │ ├── resources-multiple-returns-own.wit.json.golden.wit │ ├── resources-multiple.wit.json │ ├── resources-multiple.wit.json.golden.wit │ ├── resources-return-own.wit.json │ ├── resources-return-own.wit.json.golden.wit │ ├── resources.wit.json │ ├── resources.wit.json.golden.wit │ ├── resources1.wit.json │ ├── resources1.wit.json.golden.wit │ ├── same-name-import-export.wit.json │ ├── same-name-import-export.wit.json.golden.wit │ ├── shared-types.wit.json │ ├── shared-types.wit.json.golden.wit │ ├── simple-wasm-text.wit.json │ ├── simple-wasm-text.wit.json.golden.wit │ ├── since-and-unstable.wit │ ├── since-and-unstable.wit.json │ ├── since-and-unstable.wit.json.golden.wit │ ├── streams-and-futures.wit.json │ ├── streams-and-futures.wit.json.golden.wit │ ├── stress-export-elaborate.wit.json │ ├── stress-export-elaborate.wit.json.golden.wit │ ├── type-then-eof.wit.json │ ├── type-then-eof.wit.json.golden.wit │ ├── types.wit.json │ ├── types.wit.json.golden.wit │ ├── union-fuzz-1.wit.json │ ├── union-fuzz-1.wit.json.golden.wit │ ├── union-fuzz-2.wit.json │ ├── union-fuzz-2.wit.json.golden.wit │ ├── unstable-resource.wit.json │ ├── unstable-resource.wit.json.golden.wit │ ├── use-chain.wit.json │ ├── use-chain.wit.json.golden.wit │ ├── use.wit.json │ ├── use.wit.json.golden.wit │ ├── version-syntax.wit.json │ ├── version-syntax.wit.json.golden.wit │ ├── versions.wit.json │ ├── versions.wit.json.golden.wit │ ├── wasi.wit.json │ ├── wasi.wit.json.golden.wit │ ├── world-diamond.wit.json │ ├── world-diamond.wit.json.golden.wit │ ├── world-iface-no-collide.wit.json │ ├── world-iface-no-collide.wit.json.golden.wit │ ├── world-implicit-import1.wit.json │ ├── world-implicit-import1.wit.json.golden.wit │ ├── world-implicit-import2.wit.json │ ├── world-implicit-import2.wit.json.golden.wit │ ├── world-implicit-import3.wit.json │ ├── world-implicit-import3.wit.json.golden.wit │ ├── world-same-fields4.wit.json │ ├── world-same-fields4.wit.json.golden.wit │ ├── world-top-level-funcs.wit.json │ ├── world-top-level-funcs.wit.json.golden.wit │ ├── world-top-level-resources.wit.json │ ├── world-top-level-resources.wit.json.golden.wit │ ├── worlds-union-dedup.wit.json │ ├── worlds-union-dedup.wit.json.golden.wit │ ├── worlds-with-types.wit.json │ └── worlds-with-types.wit.json.golden.wit ├── tests ├── generated │ └── wasi │ │ ├── cli │ │ └── v0.2.0 │ │ │ ├── command │ │ │ └── command.wit.go │ │ │ ├── environment │ │ │ ├── empty.s │ │ │ ├── environment.wasm.go │ │ │ └── environment.wit.go │ │ │ ├── exit │ │ │ ├── empty.s │ │ │ ├── exit.wasm.go │ │ │ └── exit.wit.go │ │ │ ├── run │ │ │ ├── empty.s │ │ │ ├── run.exports.go │ │ │ ├── run.wasm.go │ │ │ └── run.wit.go │ │ │ ├── stderr │ │ │ ├── empty.s │ │ │ ├── stderr.wasm.go │ │ │ └── stderr.wit.go │ │ │ ├── stdin │ │ │ ├── empty.s │ │ │ ├── stdin.wasm.go │ │ │ └── stdin.wit.go │ │ │ ├── stdout │ │ │ ├── empty.s │ │ │ ├── stdout.wasm.go │ │ │ └── stdout.wit.go │ │ │ ├── terminal-input │ │ │ ├── empty.s │ │ │ ├── terminal-input.wasm.go │ │ │ └── terminal-input.wit.go │ │ │ ├── terminal-output │ │ │ ├── empty.s │ │ │ ├── terminal-output.wasm.go │ │ │ └── terminal-output.wit.go │ │ │ ├── terminal-stderr │ │ │ ├── empty.s │ │ │ ├── terminal-stderr.wasm.go │ │ │ └── terminal-stderr.wit.go │ │ │ ├── terminal-stdin │ │ │ ├── empty.s │ │ │ ├── terminal-stdin.wasm.go │ │ │ └── terminal-stdin.wit.go │ │ │ └── terminal-stdout │ │ │ ├── empty.s │ │ │ ├── terminal-stdout.wasm.go │ │ │ └── terminal-stdout.wit.go │ │ ├── clocks │ │ └── v0.2.0 │ │ │ ├── monotonic-clock │ │ │ ├── empty.s │ │ │ ├── monotonic-clock.wasm.go │ │ │ └── monotonic-clock.wit.go │ │ │ └── wall-clock │ │ │ ├── empty.s │ │ │ ├── wall-clock.wasm.go │ │ │ └── wall-clock.wit.go │ │ ├── filesystem │ │ └── v0.2.0 │ │ │ ├── preopens │ │ │ ├── empty.s │ │ │ ├── preopens.wasm.go │ │ │ └── preopens.wit.go │ │ │ └── types │ │ │ ├── abi.go │ │ │ ├── empty.s │ │ │ ├── types.wasm.go │ │ │ └── types.wit.go │ │ ├── io │ │ └── v0.2.0 │ │ │ ├── error │ │ │ ├── empty.s │ │ │ ├── error.wasm.go │ │ │ └── error.wit.go │ │ │ ├── poll │ │ │ ├── empty.s │ │ │ ├── poll.wasm.go │ │ │ └── poll.wit.go │ │ │ └── streams │ │ │ ├── empty.s │ │ │ ├── streams.wasm.go │ │ │ └── streams.wit.go │ │ ├── random │ │ └── v0.2.0 │ │ │ ├── insecure-seed │ │ │ ├── empty.s │ │ │ ├── insecure-seed.wasm.go │ │ │ └── insecure-seed.wit.go │ │ │ ├── insecure │ │ │ ├── empty.s │ │ │ ├── insecure.wasm.go │ │ │ └── insecure.wit.go │ │ │ └── random │ │ │ ├── empty.s │ │ │ ├── random.wasm.go │ │ │ └── random.wit.go │ │ └── sockets │ │ └── v0.2.0 │ │ ├── instance-network │ │ ├── empty.s │ │ ├── instance-network.wasm.go │ │ └── instance-network.wit.go │ │ ├── ip-name-lookup │ │ ├── abi.go │ │ ├── empty.s │ │ ├── ip-name-lookup.wasm.go │ │ └── ip-name-lookup.wit.go │ │ ├── network │ │ ├── abi.go │ │ ├── empty.s │ │ ├── network.wasm.go │ │ └── network.wit.go │ │ ├── tcp-create-socket │ │ ├── empty.s │ │ ├── tcp-create-socket.wasm.go │ │ └── tcp-create-socket.wit.go │ │ ├── tcp │ │ ├── abi.go │ │ ├── empty.s │ │ ├── tcp.wasm.go │ │ └── tcp.wit.go │ │ ├── udp-create-socket │ │ ├── empty.s │ │ ├── udp-create-socket.wasm.go │ │ └── udp-create-socket.wit.go │ │ └── udp │ │ ├── abi.go │ │ ├── empty.s │ │ ├── udp.wasm.go │ │ └── udp.wit.go ├── go.mod ├── json │ └── json_test.go ├── sockets │ └── sockets_test.go ├── tests.go └── tools.go ├── wit ├── abi.go ├── abi_test.go ├── bindgen │ ├── abi.go │ ├── docs.go │ ├── generate.go │ ├── generator.go │ ├── names.go │ ├── names_test.go │ ├── options.go │ └── testdata_test.go ├── codec.go ├── docs.go ├── enum.go ├── flags.go ├── function.go ├── future.go ├── ident.go ├── ident_test.go ├── interface.go ├── iterate │ └── iterate.go ├── list.go ├── list_test.go ├── load.go ├── logging │ └── logging.go ├── option.go ├── ordered │ ├── list.go │ ├── map.go │ └── map_test.go ├── package.go ├── pointer.go ├── record.go ├── resolve.go ├── resource.go ├── result.go ├── stability.go ├── stream.go ├── testdata_test.go ├── tuple.go ├── type.go ├── typedef.go ├── variant.go ├── wit.go └── world.go └── x ├── README.md └── cabi ├── docs.go ├── realloc.go └── realloc_test.go /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @ydnar 2 | -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/DESIGN.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/Makefile -------------------------------------------------------------------------------- /ORG_CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/ORG_CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/RELEASE.md -------------------------------------------------------------------------------- /cm/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/CHANGELOG.md -------------------------------------------------------------------------------- /cm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/README.md -------------------------------------------------------------------------------- /cm/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/RELEASE.md -------------------------------------------------------------------------------- /cm/abi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/abi.go -------------------------------------------------------------------------------- /cm/abi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/abi_test.go -------------------------------------------------------------------------------- /cm/case.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/case.go -------------------------------------------------------------------------------- /cm/case_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/case_test.go -------------------------------------------------------------------------------- /cm/debug_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/debug_test.go -------------------------------------------------------------------------------- /cm/dependencies_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/dependencies_test.go -------------------------------------------------------------------------------- /cm/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/docs.go -------------------------------------------------------------------------------- /cm/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/empty.s -------------------------------------------------------------------------------- /cm/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/error.go -------------------------------------------------------------------------------- /cm/error.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/error.wasm.go -------------------------------------------------------------------------------- /cm/future.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/future.go -------------------------------------------------------------------------------- /cm/go.mod: -------------------------------------------------------------------------------- 1 | module go.bytecodealliance.org/cm 2 | 3 | go 1.23.0 4 | -------------------------------------------------------------------------------- /cm/hostlayout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/hostlayout.go -------------------------------------------------------------------------------- /cm/hostlayout_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/hostlayout_test.go -------------------------------------------------------------------------------- /cm/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/list.go -------------------------------------------------------------------------------- /cm/list_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/list_json.go -------------------------------------------------------------------------------- /cm/list_json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/list_json_test.go -------------------------------------------------------------------------------- /cm/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/list_test.go -------------------------------------------------------------------------------- /cm/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/option.go -------------------------------------------------------------------------------- /cm/option_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/option_test.go -------------------------------------------------------------------------------- /cm/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/resource.go -------------------------------------------------------------------------------- /cm/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/result.go -------------------------------------------------------------------------------- /cm/result_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/result_test.go -------------------------------------------------------------------------------- /cm/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/stream.go -------------------------------------------------------------------------------- /cm/tuple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/tuple.go -------------------------------------------------------------------------------- /cm/tuple_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/tuple_test.go -------------------------------------------------------------------------------- /cm/variant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/variant.go -------------------------------------------------------------------------------- /cm/variant_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cm/variant_test.go -------------------------------------------------------------------------------- /cmd/wit-bindgen-go/cmd/generate/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cmd/wit-bindgen-go/cmd/generate/generate.go -------------------------------------------------------------------------------- /cmd/wit-bindgen-go/cmd/wit/wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cmd/wit-bindgen-go/cmd/wit/wit.go -------------------------------------------------------------------------------- /cmd/wit-bindgen-go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cmd/wit-bindgen-go/main.go -------------------------------------------------------------------------------- /cmd/wit-bindgen-go/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/cmd/wit-bindgen-go/main_test.go -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | go.bytecodealliance.org 2 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/cm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/docs/cm.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/docs/index.html -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/go.sum -------------------------------------------------------------------------------- /go.work: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/go.work -------------------------------------------------------------------------------- /internal/cmd/wasm-tools/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/cmd/wasm-tools/main.go -------------------------------------------------------------------------------- /internal/codec/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/codec/codec.go -------------------------------------------------------------------------------- /internal/codec/constraints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/codec/constraints.go -------------------------------------------------------------------------------- /internal/codec/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/codec/decode.go -------------------------------------------------------------------------------- /internal/codec/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/codec/encode.go -------------------------------------------------------------------------------- /internal/codec/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/codec/helpers.go -------------------------------------------------------------------------------- /internal/codec/json/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/codec/json/decoder.go -------------------------------------------------------------------------------- /internal/go/gen/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/go/gen/file.go -------------------------------------------------------------------------------- /internal/go/gen/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/go/gen/file_test.go -------------------------------------------------------------------------------- /internal/go/gen/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/go/gen/format.go -------------------------------------------------------------------------------- /internal/go/gen/ident.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/go/gen/ident.go -------------------------------------------------------------------------------- /internal/go/gen/ident_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/go/gen/ident_test.go -------------------------------------------------------------------------------- /internal/go/gen/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/go/gen/module.go -------------------------------------------------------------------------------- /internal/go/gen/module_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/go/gen/module_test.go -------------------------------------------------------------------------------- /internal/go/gen/names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/go/gen/names.go -------------------------------------------------------------------------------- /internal/go/gen/package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/go/gen/package.go -------------------------------------------------------------------------------- /internal/go/stack/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/go/stack/trace.go -------------------------------------------------------------------------------- /internal/memoize/memoize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/memoize/memoize.go -------------------------------------------------------------------------------- /internal/module/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/module/module.go -------------------------------------------------------------------------------- /internal/oci/oci_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/oci/oci_other.go -------------------------------------------------------------------------------- /internal/oci/oci_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/oci/oci_test.go -------------------------------------------------------------------------------- /internal/oci/oci_wasi_tinygo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/oci/oci_wasi_tinygo.go -------------------------------------------------------------------------------- /internal/relpath/getwd_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/relpath/getwd_other.go -------------------------------------------------------------------------------- /internal/relpath/getwd_wasip1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/relpath/getwd_wasip1.go -------------------------------------------------------------------------------- /internal/relpath/relpath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/relpath/relpath.go -------------------------------------------------------------------------------- /internal/relpath/relpath_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/relpath/relpath_test.go -------------------------------------------------------------------------------- /internal/stringio/stringio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/stringio/stringio.go -------------------------------------------------------------------------------- /internal/wasm/section.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/wasm/section.go -------------------------------------------------------------------------------- /internal/wasm/sleb128/sleb128.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/wasm/sleb128/sleb128.go -------------------------------------------------------------------------------- /internal/wasm/sleb128/sleb128_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/wasm/sleb128/sleb128_test.go -------------------------------------------------------------------------------- /internal/wasm/uleb128/uleb128.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/wasm/uleb128/uleb128.go -------------------------------------------------------------------------------- /internal/wasm/uleb128/uleb128_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/wasm/uleb128/uleb128_test.go -------------------------------------------------------------------------------- /internal/wasm/wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/wasm/wasm.go -------------------------------------------------------------------------------- /internal/wasmtools/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/wasmtools/Cargo.lock -------------------------------------------------------------------------------- /internal/wasmtools/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/wasmtools/Cargo.toml -------------------------------------------------------------------------------- /internal/wasmtools/instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/wasmtools/instance.go -------------------------------------------------------------------------------- /internal/wasmtools/instance_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/wasmtools/instance_other.go -------------------------------------------------------------------------------- /internal/wasmtools/instance_tinygo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/wasmtools/instance_tinygo.go -------------------------------------------------------------------------------- /internal/wasmtools/src/lib.rs: -------------------------------------------------------------------------------- 1 | // intentionally left empty 2 | -------------------------------------------------------------------------------- /internal/wasmtools/wasm-tools.wasm.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/wasmtools/wasm-tools.wasm.gz -------------------------------------------------------------------------------- /internal/witcli/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/witcli/dir.go -------------------------------------------------------------------------------- /internal/witcli/dir_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/witcli/dir_test.go -------------------------------------------------------------------------------- /internal/witcli/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/witcli/logger.go -------------------------------------------------------------------------------- /internal/witcli/witcli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/internal/witcli/witcli.go -------------------------------------------------------------------------------- /scripts/extract-changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/scripts/extract-changelog.sh -------------------------------------------------------------------------------- /testdata/codegen/allow-unused.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/allow-unused.wit -------------------------------------------------------------------------------- /testdata/codegen/allow-unused.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/allow-unused.wit.json -------------------------------------------------------------------------------- /testdata/codegen/allow-unused.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/allow-unused.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/char.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/char.wit -------------------------------------------------------------------------------- /testdata/codegen/char.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/char.wit.json -------------------------------------------------------------------------------- /testdata/codegen/char.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/char.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/conventions.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/conventions.wit -------------------------------------------------------------------------------- /testdata/codegen/conventions.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/conventions.wit.json -------------------------------------------------------------------------------- /testdata/codegen/conventions.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/conventions.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/empty.wit: -------------------------------------------------------------------------------- 1 | package foo:foo; 2 | 3 | world empty {} 4 | -------------------------------------------------------------------------------- /testdata/codegen/empty.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/empty.wit.json -------------------------------------------------------------------------------- /testdata/codegen/empty.wit.json.golden.wit: -------------------------------------------------------------------------------- 1 | package foo:foo; 2 | 3 | world empty {} 4 | -------------------------------------------------------------------------------- /testdata/codegen/enum-has-go-keyword.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/enum-has-go-keyword.wit -------------------------------------------------------------------------------- /testdata/codegen/enum-has-go-keyword.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/enum-has-go-keyword.wit.json -------------------------------------------------------------------------------- /testdata/codegen/enum-has-go-keyword.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/enum-has-go-keyword.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/error-context.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/error-context.wit -------------------------------------------------------------------------------- /testdata/codegen/error-context.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/error-context.wit.json -------------------------------------------------------------------------------- /testdata/codegen/error-context.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/error-context.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/flags.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/flags.wit -------------------------------------------------------------------------------- /testdata/codegen/flags.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/flags.wit.json -------------------------------------------------------------------------------- /testdata/codegen/flags.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/flags.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/floats.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/floats.wit -------------------------------------------------------------------------------- /testdata/codegen/floats.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/floats.wit.json -------------------------------------------------------------------------------- /testdata/codegen/floats.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/floats.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/fully-qualified-java-address.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/fully-qualified-java-address.wit -------------------------------------------------------------------------------- /testdata/codegen/fully-qualified-java-address.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/fully-qualified-java-address.wit.json -------------------------------------------------------------------------------- /testdata/codegen/fully-qualified-java-address.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/fully-qualified-java-address.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/futures.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/futures.wit -------------------------------------------------------------------------------- /testdata/codegen/futures.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/futures.wit.json -------------------------------------------------------------------------------- /testdata/codegen/futures.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/futures.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/go_params.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/go_params.wit -------------------------------------------------------------------------------- /testdata/codegen/go_params.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/go_params.wit.json -------------------------------------------------------------------------------- /testdata/codegen/go_params.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/go_params.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/guest-name.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/guest-name.wit -------------------------------------------------------------------------------- /testdata/codegen/guest-name.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/guest-name.wit.json -------------------------------------------------------------------------------- /testdata/codegen/guest-name.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/guest-name.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/import-and-export-resource-alias.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/import-and-export-resource-alias.wit -------------------------------------------------------------------------------- /testdata/codegen/import-and-export-resource-alias.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/import-and-export-resource-alias.wit.json -------------------------------------------------------------------------------- /testdata/codegen/import-and-export-resource-alias.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/import-and-export-resource-alias.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/import-and-export-resource.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/import-and-export-resource.wit -------------------------------------------------------------------------------- /testdata/codegen/import-and-export-resource.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/import-and-export-resource.wit.json -------------------------------------------------------------------------------- /testdata/codegen/import-and-export-resource.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/import-and-export-resource.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/import-export-same-func.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/import-export-same-func.wit -------------------------------------------------------------------------------- /testdata/codegen/import-export-same-func.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/import-export-same-func.wit.json -------------------------------------------------------------------------------- /testdata/codegen/import-export-same-func.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/import-export-same-func.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/import-func.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/import-func.wit -------------------------------------------------------------------------------- /testdata/codegen/import-func.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/import-func.wit.json -------------------------------------------------------------------------------- /testdata/codegen/import-func.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/import-func.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/import_export_func.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/import_export_func.wit -------------------------------------------------------------------------------- /testdata/codegen/import_export_func.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/import_export_func.wit.json -------------------------------------------------------------------------------- /testdata/codegen/import_export_func.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/import_export_func.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/integers.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/integers.wit -------------------------------------------------------------------------------- /testdata/codegen/integers.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/integers.wit.json -------------------------------------------------------------------------------- /testdata/codegen/integers.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/integers.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/interface-has-go-keyword.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/interface-has-go-keyword.wit -------------------------------------------------------------------------------- /testdata/codegen/interface-has-go-keyword.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/interface-has-go-keyword.wit.json -------------------------------------------------------------------------------- /testdata/codegen/interface-has-go-keyword.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/interface-has-go-keyword.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/issue544.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/issue544.wit -------------------------------------------------------------------------------- /testdata/codegen/issue544.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/issue544.wit.json -------------------------------------------------------------------------------- /testdata/codegen/issue544.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/issue544.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/issue551.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/issue551.wit -------------------------------------------------------------------------------- /testdata/codegen/issue551.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/issue551.wit.json -------------------------------------------------------------------------------- /testdata/codegen/issue551.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/issue551.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/issue573.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/issue573.wit -------------------------------------------------------------------------------- /testdata/codegen/issue573.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/issue573.wit.json -------------------------------------------------------------------------------- /testdata/codegen/issue573.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/issue573.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/issue607.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/issue607.wit -------------------------------------------------------------------------------- /testdata/codegen/issue607.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/issue607.wit.json -------------------------------------------------------------------------------- /testdata/codegen/issue607.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/issue607.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/issue668.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/issue668.wit -------------------------------------------------------------------------------- /testdata/codegen/issue668.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/issue668.wit.json -------------------------------------------------------------------------------- /testdata/codegen/issue668.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/issue668.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/issue929-no-export.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/issue929-no-export.wit -------------------------------------------------------------------------------- /testdata/codegen/issue929-no-export.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/issue929-no-export.wit.json -------------------------------------------------------------------------------- /testdata/codegen/issue929-no-export.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/issue929-no-export.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/issue929-no-import.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/issue929-no-import.wit -------------------------------------------------------------------------------- /testdata/codegen/issue929-no-import.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/issue929-no-import.wit.json -------------------------------------------------------------------------------- /testdata/codegen/issue929-no-import.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/issue929-no-import.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/issue929-only-methods.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/issue929-only-methods.wit -------------------------------------------------------------------------------- /testdata/codegen/issue929-only-methods.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/issue929-only-methods.wit.json -------------------------------------------------------------------------------- /testdata/codegen/issue929-only-methods.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/issue929-only-methods.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/issue929.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/issue929.wit -------------------------------------------------------------------------------- /testdata/codegen/issue929.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/issue929.wit.json -------------------------------------------------------------------------------- /testdata/codegen/issue929.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/issue929.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/just-export.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/just-export.wit -------------------------------------------------------------------------------- /testdata/codegen/just-export.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/just-export.wit.json -------------------------------------------------------------------------------- /testdata/codegen/just-export.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/just-export.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/keywords-in-interfaces-and-worlds.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/keywords-in-interfaces-and-worlds.wit -------------------------------------------------------------------------------- /testdata/codegen/keywords-in-interfaces-and-worlds.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/keywords-in-interfaces-and-worlds.wit.json -------------------------------------------------------------------------------- /testdata/codegen/keywords-in-interfaces-and-worlds.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/keywords-in-interfaces-and-worlds.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/keywords.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/keywords.wit -------------------------------------------------------------------------------- /testdata/codegen/keywords.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/keywords.wit.json -------------------------------------------------------------------------------- /testdata/codegen/keywords.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/keywords.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/lift-lower-foreign.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/lift-lower-foreign.wit -------------------------------------------------------------------------------- /testdata/codegen/lift-lower-foreign.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/lift-lower-foreign.wit.json -------------------------------------------------------------------------------- /testdata/codegen/lift-lower-foreign.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/lift-lower-foreign.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/lists.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/lists.wit -------------------------------------------------------------------------------- /testdata/codegen/lists.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/lists.wit.json -------------------------------------------------------------------------------- /testdata/codegen/lists.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/lists.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/many-arguments.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/many-arguments.wit -------------------------------------------------------------------------------- /testdata/codegen/many-arguments.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/many-arguments.wit.json -------------------------------------------------------------------------------- /testdata/codegen/many-arguments.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/many-arguments.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/multi-return.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/multi-return.wit -------------------------------------------------------------------------------- /testdata/codegen/multi-return.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/multi-return.wit.json -------------------------------------------------------------------------------- /testdata/codegen/multi-return.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/multi-return.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/option-result.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/option-result.wit -------------------------------------------------------------------------------- /testdata/codegen/option-result.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/option-result.wit.json -------------------------------------------------------------------------------- /testdata/codegen/option-result.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/option-result.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/record-has-go-keyword-and-used-in-fn.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/record-has-go-keyword-and-used-in-fn.wit -------------------------------------------------------------------------------- /testdata/codegen/record-has-go-keyword-and-used-in-fn.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/record-has-go-keyword-and-used-in-fn.wit.json -------------------------------------------------------------------------------- /testdata/codegen/record-has-go-keyword-and-used-in-fn.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/record-has-go-keyword-and-used-in-fn.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/records.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/records.wit -------------------------------------------------------------------------------- /testdata/codegen/records.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/records.wit.json -------------------------------------------------------------------------------- /testdata/codegen/records.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/records.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/rename-interface.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/rename-interface.wit -------------------------------------------------------------------------------- /testdata/codegen/rename-interface.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/rename-interface.wit.json -------------------------------------------------------------------------------- /testdata/codegen/rename-interface.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/rename-interface.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/resource-alias.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resource-alias.wit -------------------------------------------------------------------------------- /testdata/codegen/resource-alias.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resource-alias.wit.json -------------------------------------------------------------------------------- /testdata/codegen/resource-alias.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resource-alias.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/resource-borrow-in-record-export.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resource-borrow-in-record-export.wit -------------------------------------------------------------------------------- /testdata/codegen/resource-borrow-in-record-export.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resource-borrow-in-record-export.wit.json -------------------------------------------------------------------------------- /testdata/codegen/resource-borrow-in-record-export.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resource-borrow-in-record-export.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/resource-borrow-in-record.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resource-borrow-in-record.wit -------------------------------------------------------------------------------- /testdata/codegen/resource-borrow-in-record.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resource-borrow-in-record.wit.json -------------------------------------------------------------------------------- /testdata/codegen/resource-borrow-in-record.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resource-borrow-in-record.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/resource-local-alias-borrow-import.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resource-local-alias-borrow-import.wit -------------------------------------------------------------------------------- /testdata/codegen/resource-local-alias-borrow-import.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resource-local-alias-borrow-import.wit.json -------------------------------------------------------------------------------- /testdata/codegen/resource-local-alias-borrow-import.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resource-local-alias-borrow-import.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/resource-local-alias-borrow.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resource-local-alias-borrow.wit -------------------------------------------------------------------------------- /testdata/codegen/resource-local-alias-borrow.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resource-local-alias-borrow.wit.json -------------------------------------------------------------------------------- /testdata/codegen/resource-local-alias-borrow.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resource-local-alias-borrow.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/resource-local-alias.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resource-local-alias.wit -------------------------------------------------------------------------------- /testdata/codegen/resource-local-alias.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resource-local-alias.wit.json -------------------------------------------------------------------------------- /testdata/codegen/resource-local-alias.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resource-local-alias.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/resource-own-in-other-interface.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resource-own-in-other-interface.wit -------------------------------------------------------------------------------- /testdata/codegen/resource-own-in-other-interface.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resource-own-in-other-interface.wit.json -------------------------------------------------------------------------------- /testdata/codegen/resource-own-in-other-interface.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resource-own-in-other-interface.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/resources-in-aggregates.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resources-in-aggregates.wit -------------------------------------------------------------------------------- /testdata/codegen/resources-in-aggregates.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resources-in-aggregates.wit.json -------------------------------------------------------------------------------- /testdata/codegen/resources-in-aggregates.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resources-in-aggregates.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/resources-with-futures.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resources-with-futures.wit -------------------------------------------------------------------------------- /testdata/codegen/resources-with-futures.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resources-with-futures.wit.json -------------------------------------------------------------------------------- /testdata/codegen/resources-with-futures.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resources-with-futures.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/resources-with-lists.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resources-with-lists.wit -------------------------------------------------------------------------------- /testdata/codegen/resources-with-lists.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resources-with-lists.wit.json -------------------------------------------------------------------------------- /testdata/codegen/resources-with-lists.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resources-with-lists.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/resources-with-streams.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resources-with-streams.wit -------------------------------------------------------------------------------- /testdata/codegen/resources-with-streams.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resources-with-streams.wit.json -------------------------------------------------------------------------------- /testdata/codegen/resources-with-streams.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resources-with-streams.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/resources.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resources.wit -------------------------------------------------------------------------------- /testdata/codegen/resources.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resources.wit.json -------------------------------------------------------------------------------- /testdata/codegen/resources.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/resources.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/result-empty.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/result-empty.wit -------------------------------------------------------------------------------- /testdata/codegen/result-empty.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/result-empty.wit.json -------------------------------------------------------------------------------- /testdata/codegen/result-empty.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/result-empty.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/ret-areas.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/ret-areas.wit -------------------------------------------------------------------------------- /testdata/codegen/ret-areas.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/ret-areas.wit.json -------------------------------------------------------------------------------- /testdata/codegen/ret-areas.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/ret-areas.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/return-resource-from-export.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/return-resource-from-export.wit -------------------------------------------------------------------------------- /testdata/codegen/return-resource-from-export.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/return-resource-from-export.wit.json -------------------------------------------------------------------------------- /testdata/codegen/return-resource-from-export.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/return-resource-from-export.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/same-names1.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/same-names1.wit -------------------------------------------------------------------------------- /testdata/codegen/same-names1.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/same-names1.wit.json -------------------------------------------------------------------------------- /testdata/codegen/same-names1.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/same-names1.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/same-names2.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/same-names2.wit -------------------------------------------------------------------------------- /testdata/codegen/same-names2.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/same-names2.wit.json -------------------------------------------------------------------------------- /testdata/codegen/same-names2.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/same-names2.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/same-names3.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/same-names3.wit -------------------------------------------------------------------------------- /testdata/codegen/same-names3.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/same-names3.wit.json -------------------------------------------------------------------------------- /testdata/codegen/same-names3.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/same-names3.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/same-names4.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/same-names4.wit -------------------------------------------------------------------------------- /testdata/codegen/same-names4.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/same-names4.wit.json -------------------------------------------------------------------------------- /testdata/codegen/same-names4.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/same-names4.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/same-names5.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/same-names5.wit -------------------------------------------------------------------------------- /testdata/codegen/same-names5.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/same-names5.wit.json -------------------------------------------------------------------------------- /testdata/codegen/same-names5.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/same-names5.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/simple-enum.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/simple-enum.wit -------------------------------------------------------------------------------- /testdata/codegen/simple-enum.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/simple-enum.wit.json -------------------------------------------------------------------------------- /testdata/codegen/simple-enum.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/simple-enum.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/simple-functions.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/simple-functions.wit -------------------------------------------------------------------------------- /testdata/codegen/simple-functions.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/simple-functions.wit.json -------------------------------------------------------------------------------- /testdata/codegen/simple-functions.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/simple-functions.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/simple-http.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/simple-http.wit -------------------------------------------------------------------------------- /testdata/codegen/simple-http.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/simple-http.wit.json -------------------------------------------------------------------------------- /testdata/codegen/simple-http.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/simple-http.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/simple-lists.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/simple-lists.wit -------------------------------------------------------------------------------- /testdata/codegen/simple-lists.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/simple-lists.wit.json -------------------------------------------------------------------------------- /testdata/codegen/simple-lists.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/simple-lists.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/simple-option.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/simple-option.wit -------------------------------------------------------------------------------- /testdata/codegen/simple-option.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/simple-option.wit.json -------------------------------------------------------------------------------- /testdata/codegen/simple-option.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/simple-option.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/small-anonymous.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/small-anonymous.wit -------------------------------------------------------------------------------- /testdata/codegen/small-anonymous.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/small-anonymous.wit.json -------------------------------------------------------------------------------- /testdata/codegen/small-anonymous.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/small-anonymous.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/smoke-default.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/smoke-default.wit -------------------------------------------------------------------------------- /testdata/codegen/smoke-default.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/smoke-default.wit.json -------------------------------------------------------------------------------- /testdata/codegen/smoke-default.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/smoke-default.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/smoke-export.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/smoke-export.wit -------------------------------------------------------------------------------- /testdata/codegen/smoke-export.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/smoke-export.wit.json -------------------------------------------------------------------------------- /testdata/codegen/smoke-export.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/smoke-export.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/smoke.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/smoke.wit -------------------------------------------------------------------------------- /testdata/codegen/smoke.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/smoke.wit.json -------------------------------------------------------------------------------- /testdata/codegen/smoke.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/smoke.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/streams.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/streams.wit -------------------------------------------------------------------------------- /testdata/codegen/streams.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/streams.wit.json -------------------------------------------------------------------------------- /testdata/codegen/streams.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/streams.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/strings.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/strings.wit -------------------------------------------------------------------------------- /testdata/codegen/strings.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/strings.wit.json -------------------------------------------------------------------------------- /testdata/codegen/strings.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/strings.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/unused-import.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/unused-import.wit -------------------------------------------------------------------------------- /testdata/codegen/unused-import.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/unused-import.wit.json -------------------------------------------------------------------------------- /testdata/codegen/unused-import.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/unused-import.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/use-across-interfaces.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/use-across-interfaces.wit -------------------------------------------------------------------------------- /testdata/codegen/use-across-interfaces.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/use-across-interfaces.wit.json -------------------------------------------------------------------------------- /testdata/codegen/use-across-interfaces.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/use-across-interfaces.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/variants-unioning-types.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/variants-unioning-types.wit -------------------------------------------------------------------------------- /testdata/codegen/variants-unioning-types.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/variants-unioning-types.wit.json -------------------------------------------------------------------------------- /testdata/codegen/variants-unioning-types.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/variants-unioning-types.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/variants.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/variants.wit -------------------------------------------------------------------------------- /testdata/codegen/variants.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/variants.wit.json -------------------------------------------------------------------------------- /testdata/codegen/variants.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/variants.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/world-has-go-keyword.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/world-has-go-keyword.wit -------------------------------------------------------------------------------- /testdata/codegen/world-has-go-keyword.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/world-has-go-keyword.wit.json -------------------------------------------------------------------------------- /testdata/codegen/world-has-go-keyword.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/world-has-go-keyword.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/worlds-with-types.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/worlds-with-types.wit -------------------------------------------------------------------------------- /testdata/codegen/worlds-with-types.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/worlds-with-types.wit.json -------------------------------------------------------------------------------- /testdata/codegen/worlds-with-types.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/worlds-with-types.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/codegen/zero-size-tuple.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/zero-size-tuple.wit -------------------------------------------------------------------------------- /testdata/codegen/zero-size-tuple.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/zero-size-tuple.wit.json -------------------------------------------------------------------------------- /testdata/codegen/zero-size-tuple.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/codegen/zero-size-tuple.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/escape/escaped-names.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/escape/escaped-names.wit -------------------------------------------------------------------------------- /testdata/escape/escaped-names.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/escape/escaped-names.wit.json -------------------------------------------------------------------------------- /testdata/escape/escaped-names.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/escape/escaped-names.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/example/aliases.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/aliases.wit -------------------------------------------------------------------------------- /testdata/example/aliases.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/aliases.wit.json -------------------------------------------------------------------------------- /testdata/example/aliases.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/aliases.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/example/aqua.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/aqua.wit -------------------------------------------------------------------------------- /testdata/example/aqua.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/aqua.wit.json -------------------------------------------------------------------------------- /testdata/example/aqua.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/aqua.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/example/exported-list.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/exported-list.wit -------------------------------------------------------------------------------- /testdata/example/exported-list.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/exported-list.wit.json -------------------------------------------------------------------------------- /testdata/example/exported-list.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/exported-list.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/example/exported-resource.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/exported-resource.wit -------------------------------------------------------------------------------- /testdata/example/exported-resource.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/exported-resource.wit.json -------------------------------------------------------------------------------- /testdata/example/exported-resource.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/exported-resource.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/example/flat-flags.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/flat-flags.wit -------------------------------------------------------------------------------- /testdata/example/flat-flags.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/flat-flags.wit.json -------------------------------------------------------------------------------- /testdata/example/flat-flags.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/flat-flags.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/example/flat-variant.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/flat-variant.wit -------------------------------------------------------------------------------- /testdata/example/flat-variant.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/flat-variant.wit.json -------------------------------------------------------------------------------- /testdata/example/flat-variant.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/flat-variant.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/example/non-flat-params.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/non-flat-params.wit -------------------------------------------------------------------------------- /testdata/example/non-flat-params.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/non-flat-params.wit.json -------------------------------------------------------------------------------- /testdata/example/non-flat-params.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/non-flat-params.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/example/only-result.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/only-result.wit -------------------------------------------------------------------------------- /testdata/example/only-result.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/only-result.wit.json -------------------------------------------------------------------------------- /testdata/example/only-result.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/only-result.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/example/post-return.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/post-return.wit -------------------------------------------------------------------------------- /testdata/example/post-return.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/post-return.wit.json -------------------------------------------------------------------------------- /testdata/example/post-return.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/post-return.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/example/records.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/records.wit -------------------------------------------------------------------------------- /testdata/example/records.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/records.wit.json -------------------------------------------------------------------------------- /testdata/example/records.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/records.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/example/resource-in-world.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/resource-in-world.wit -------------------------------------------------------------------------------- /testdata/example/resource-in-world.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/resource-in-world.wit.json -------------------------------------------------------------------------------- /testdata/example/resource-in-world.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/resource-in-world.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/example/result-param.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/result-param.wit -------------------------------------------------------------------------------- /testdata/example/result-param.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/result-param.wit.json -------------------------------------------------------------------------------- /testdata/example/result-param.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/result-param.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/example/tuples.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/tuples.wit -------------------------------------------------------------------------------- /testdata/example/tuples.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/tuples.wit.json -------------------------------------------------------------------------------- /testdata/example/tuples.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/tuples.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/example/use-of-export.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/use-of-export.wit -------------------------------------------------------------------------------- /testdata/example/use-of-export.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/use-of-export.wit.json -------------------------------------------------------------------------------- /testdata/example/use-of-export.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/use-of-export.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/example/use-of-import-or-export.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/use-of-import-or-export.wit -------------------------------------------------------------------------------- /testdata/example/use-of-import-or-export.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/use-of-import-or-export.wit.json -------------------------------------------------------------------------------- /testdata/example/use-of-import-or-export.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/use-of-import-or-export.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/example/use-of-import.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/use-of-import.wit -------------------------------------------------------------------------------- /testdata/example/use-of-import.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/use-of-import.wit.json -------------------------------------------------------------------------------- /testdata/example/use-of-import.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/example/use-of-import.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/go.mod -------------------------------------------------------------------------------- /testdata/issues/issue163.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue163.wit -------------------------------------------------------------------------------- /testdata/issues/issue163.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue163.wit.json -------------------------------------------------------------------------------- /testdata/issues/issue163.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue163.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/issues/issue165.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue165.wit -------------------------------------------------------------------------------- /testdata/issues/issue165.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue165.wit.json -------------------------------------------------------------------------------- /testdata/issues/issue165.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue165.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/issues/issue167.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue167.wit -------------------------------------------------------------------------------- /testdata/issues/issue167.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue167.wit.json -------------------------------------------------------------------------------- /testdata/issues/issue167.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue167.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/issues/issue170.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue170.wit -------------------------------------------------------------------------------- /testdata/issues/issue170.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue170.wit.json -------------------------------------------------------------------------------- /testdata/issues/issue170.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue170.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/issues/issue175.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue175.wit -------------------------------------------------------------------------------- /testdata/issues/issue175.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue175.wit.json -------------------------------------------------------------------------------- /testdata/issues/issue175.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue175.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/issues/issue215.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue215.wit -------------------------------------------------------------------------------- /testdata/issues/issue215.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue215.wit.json -------------------------------------------------------------------------------- /testdata/issues/issue215.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue215.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/issues/issue240.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue240.wit -------------------------------------------------------------------------------- /testdata/issues/issue240.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue240.wit.json -------------------------------------------------------------------------------- /testdata/issues/issue240.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue240.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/issues/issue242.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue242.wit -------------------------------------------------------------------------------- /testdata/issues/issue242.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue242.wit.json -------------------------------------------------------------------------------- /testdata/issues/issue242.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue242.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/issues/issue264.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue264.wit -------------------------------------------------------------------------------- /testdata/issues/issue264.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue264.wit.json -------------------------------------------------------------------------------- /testdata/issues/issue264.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue264.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/issues/issue281.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue281.wit -------------------------------------------------------------------------------- /testdata/issues/issue281.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue281.wit.json -------------------------------------------------------------------------------- /testdata/issues/issue281.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue281.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/issues/issue306.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue306.wit -------------------------------------------------------------------------------- /testdata/issues/issue306.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue306.wit.json -------------------------------------------------------------------------------- /testdata/issues/issue306.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue306.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/issues/issue325-processed.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue325-processed.wit -------------------------------------------------------------------------------- /testdata/issues/issue325-processed.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue325-processed.wit.json -------------------------------------------------------------------------------- /testdata/issues/issue325-processed.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue325-processed.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/issues/issue325.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue325.wit -------------------------------------------------------------------------------- /testdata/issues/issue325.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue325.wit.json -------------------------------------------------------------------------------- /testdata/issues/issue325.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue325.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/issues/issue344.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue344.wit -------------------------------------------------------------------------------- /testdata/issues/issue344.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue344.wit.json -------------------------------------------------------------------------------- /testdata/issues/issue344.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue344.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/issues/issue347.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue347.wit -------------------------------------------------------------------------------- /testdata/issues/issue347.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue347.wit.json -------------------------------------------------------------------------------- /testdata/issues/issue347.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue347.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/issues/issue352.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue352.wit -------------------------------------------------------------------------------- /testdata/issues/issue352.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue352.wit.json -------------------------------------------------------------------------------- /testdata/issues/issue352.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue352.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/issues/issue95.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue95.wit -------------------------------------------------------------------------------- /testdata/issues/issue95.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue95.wit.json -------------------------------------------------------------------------------- /testdata/issues/issue95.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/issues/issue95.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wasi/cli-command.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wasi/cli-command.wit -------------------------------------------------------------------------------- /testdata/wasi/cli-command.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wasi/cli-command.wit.json -------------------------------------------------------------------------------- /testdata/wasi/cli-command.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wasi/cli-command.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wasi/cli.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wasi/cli.wit.json -------------------------------------------------------------------------------- /testdata/wasi/cli.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wasi/cli.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wasi/clocks-imports.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wasi/clocks-imports.wit -------------------------------------------------------------------------------- /testdata/wasi/clocks-imports.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wasi/clocks-imports.wit.json -------------------------------------------------------------------------------- /testdata/wasi/clocks-imports.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wasi/clocks-imports.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wasi/http-minimal.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wasi/http-minimal.wit -------------------------------------------------------------------------------- /testdata/wasi/http-minimal.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wasi/http-minimal.wit.json -------------------------------------------------------------------------------- /testdata/wasi/http-minimal.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wasi/http-minimal.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wasi/http.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wasi/http.wit.json -------------------------------------------------------------------------------- /testdata/wasi/http.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wasi/http.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/comments.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/comments.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/comments.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/comments.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/complex-include.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/complex-include.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/complex-include.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/complex-include.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/cross-package-resource.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/cross-package-resource.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/cross-package-resource.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/cross-package-resource.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/diamond1.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/diamond1.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/diamond1.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/diamond1.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/disambiguate-diamond.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/disambiguate-diamond.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/disambiguate-diamond.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/disambiguate-diamond.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/embedded.wit.md.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/embedded.wit.md.json -------------------------------------------------------------------------------- /testdata/wit-parser/embedded.wit.md.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/embedded.wit.md.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/empty.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/empty.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/empty.wit.json.golden.wit: -------------------------------------------------------------------------------- 1 | package foo:empty; 2 | -------------------------------------------------------------------------------- /testdata/wit-parser/error-context.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/error-context.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/error-context.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/error-context.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/feature-gates.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/feature-gates.wit -------------------------------------------------------------------------------- /testdata/wit-parser/feature-gates.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/feature-gates.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/feature-gates.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/feature-gates.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/feature-types.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/feature-types.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/feature-types.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/feature-types.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/foreign-deps-union.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/foreign-deps-union.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/foreign-deps-union.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/foreign-deps-union.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/foreign-deps.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/foreign-deps.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/foreign-deps.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/foreign-deps.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/functions.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/functions.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/functions.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/functions.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/gated-include-use-with-stable.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/gated-include-use-with-stable.wit -------------------------------------------------------------------------------- /testdata/wit-parser/gated-include-use-with-stable.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/gated-include-use-with-stable.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/gated-include-use-with-stable.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/gated-include-use-with-stable.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/gated-use.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/gated-use.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/gated-use.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/gated-use.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/ignore-files-deps.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/ignore-files-deps.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/ignore-files-deps.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/ignore-files-deps.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/import-export-overlap1.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/import-export-overlap1.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/import-export-overlap1.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/import-export-overlap1.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/import-export-overlap2.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/import-export-overlap2.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/import-export-overlap2.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/import-export-overlap2.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/include-reps.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/include-reps.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/include-reps.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/include-reps.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/kebab-name-include-with.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/kebab-name-include-with.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/kebab-name-include-with.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/kebab-name-include-with.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/kinds-of-deps.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/kinds-of-deps.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/kinds-of-deps.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/kinds-of-deps.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/many-names.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/many-names.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/many-names.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/many-names.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/multi-file-multi-package.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/multi-file-multi-package.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/multi-file-multi-package.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/multi-file-multi-package.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/multi-file.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/multi-file.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/multi-file.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/multi-file.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/multi-package-deps.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/multi-package-deps.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/multi-package-deps.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/multi-package-deps.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/multi-package-shared-deps.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/multi-package-shared-deps.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/multi-package-shared-deps.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/multi-package-shared-deps.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/multi-package-transitive-deps.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/multi-package-transitive-deps.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/multi-package-transitive-deps.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/multi-package-transitive-deps.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/name-both-resource-and-type.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/name-both-resource-and-type.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/name-both-resource-and-type.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/name-both-resource-and-type.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/package-syntax1.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/package-syntax1.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/package-syntax1.wit.json.golden.wit: -------------------------------------------------------------------------------- 1 | package foo:foo; 2 | -------------------------------------------------------------------------------- /testdata/wit-parser/package-syntax3.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/package-syntax3.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/package-syntax3.wit.json.golden.wit: -------------------------------------------------------------------------------- 1 | package foo:bar; 2 | -------------------------------------------------------------------------------- /testdata/wit-parser/package-syntax4.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/package-syntax4.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/package-syntax4.wit.json.golden.wit: -------------------------------------------------------------------------------- 1 | package foo:bar@2.0.0; 2 | -------------------------------------------------------------------------------- /testdata/wit-parser/packages-explicit-colliding-decl-names.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/packages-explicit-colliding-decl-names.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/packages-explicit-colliding-decl-names.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/packages-explicit-colliding-decl-names.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/packages-explicit-internal-references.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/packages-explicit-internal-references.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/packages-explicit-internal-references.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/packages-explicit-internal-references.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/packages-explicit-with-semver.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/packages-explicit-with-semver.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/packages-explicit-with-semver.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/packages-explicit-with-semver.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/packages-multiple-explicit.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/packages-multiple-explicit.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/packages-multiple-explicit.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/packages-multiple-explicit.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/packages-multiple-nested.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/packages-multiple-nested.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/packages-multiple-nested.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/packages-multiple-nested.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/packages-nested-colliding-decl-names.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/packages-nested-colliding-decl-names.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/packages-nested-colliding-decl-names.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/packages-nested-colliding-decl-names.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/packages-nested-internal-references.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/packages-nested-internal-references.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/packages-nested-internal-references.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/packages-nested-internal-references.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/packages-nested-with-semver.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/packages-nested-with-semver.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/packages-nested-with-semver.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/packages-nested-with-semver.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/packages-single-explicit.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/packages-single-explicit.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/packages-single-explicit.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/packages-single-explicit.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/packages-single-nested.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/packages-single-nested.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/packages-single-nested.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/packages-single-nested.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/random.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/random.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/random.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/random.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/resources-empty.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/resources-empty.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/resources-empty.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/resources-empty.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/resources-multiple-returns-own.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/resources-multiple-returns-own.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/resources-multiple-returns-own.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/resources-multiple-returns-own.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/resources-multiple.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/resources-multiple.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/resources-multiple.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/resources-multiple.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/resources-return-own.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/resources-return-own.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/resources-return-own.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/resources-return-own.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/resources.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/resources.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/resources.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/resources.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/resources1.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/resources1.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/resources1.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/resources1.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/same-name-import-export.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/same-name-import-export.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/same-name-import-export.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/same-name-import-export.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/shared-types.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/shared-types.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/shared-types.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/shared-types.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/simple-wasm-text.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/simple-wasm-text.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/simple-wasm-text.wit.json.golden.wit: -------------------------------------------------------------------------------- 1 | package a:b; 2 | 3 | interface x {} 4 | -------------------------------------------------------------------------------- /testdata/wit-parser/since-and-unstable.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/since-and-unstable.wit -------------------------------------------------------------------------------- /testdata/wit-parser/since-and-unstable.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/since-and-unstable.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/since-and-unstable.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/since-and-unstable.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/streams-and-futures.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/streams-and-futures.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/streams-and-futures.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/streams-and-futures.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/stress-export-elaborate.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/stress-export-elaborate.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/stress-export-elaborate.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/stress-export-elaborate.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/type-then-eof.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/type-then-eof.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/type-then-eof.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/type-then-eof.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/types.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/types.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/types.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/types.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/union-fuzz-1.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/union-fuzz-1.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/union-fuzz-1.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/union-fuzz-1.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/union-fuzz-2.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/union-fuzz-2.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/union-fuzz-2.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/union-fuzz-2.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/unstable-resource.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/unstable-resource.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/unstable-resource.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/unstable-resource.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/use-chain.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/use-chain.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/use-chain.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/use-chain.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/use.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/use.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/use.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/use.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/version-syntax.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/version-syntax.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/version-syntax.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/version-syntax.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/versions.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/versions.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/versions.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/versions.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/wasi.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/wasi.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/wasi.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/wasi.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/world-diamond.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/world-diamond.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/world-diamond.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/world-diamond.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/world-iface-no-collide.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/world-iface-no-collide.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/world-iface-no-collide.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/world-iface-no-collide.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/world-implicit-import1.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/world-implicit-import1.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/world-implicit-import1.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/world-implicit-import1.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/world-implicit-import2.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/world-implicit-import2.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/world-implicit-import2.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/world-implicit-import2.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/world-implicit-import3.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/world-implicit-import3.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/world-implicit-import3.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/world-implicit-import3.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/world-same-fields4.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/world-same-fields4.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/world-same-fields4.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/world-same-fields4.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/world-top-level-funcs.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/world-top-level-funcs.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/world-top-level-funcs.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/world-top-level-funcs.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/world-top-level-resources.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/world-top-level-resources.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/world-top-level-resources.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/world-top-level-resources.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/worlds-union-dedup.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/worlds-union-dedup.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/worlds-union-dedup.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/worlds-union-dedup.wit.json.golden.wit -------------------------------------------------------------------------------- /testdata/wit-parser/worlds-with-types.wit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/worlds-with-types.wit.json -------------------------------------------------------------------------------- /testdata/wit-parser/worlds-with-types.wit.json.golden.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/testdata/wit-parser/worlds-with-types.wit.json.golden.wit -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/command/command.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/command/command.wit.go -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/environment/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/environment/empty.s -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/environment/environment.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/environment/environment.wasm.go -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/environment/environment.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/environment/environment.wit.go -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/exit/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/exit/empty.s -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/exit/exit.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/exit/exit.wasm.go -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/exit/exit.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/exit/exit.wit.go -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/run/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/run/empty.s -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/run/run.exports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/run/run.exports.go -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/run/run.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/run/run.wasm.go -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/run/run.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/run/run.wit.go -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/stderr/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/stderr/empty.s -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/stderr/stderr.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/stderr/stderr.wasm.go -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/stderr/stderr.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/stderr/stderr.wit.go -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/stdin/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/stdin/empty.s -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/stdin/stdin.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/stdin/stdin.wasm.go -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/stdin/stdin.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/stdin/stdin.wit.go -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/stdout/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/stdout/empty.s -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/stdout/stdout.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/stdout/stdout.wasm.go -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/stdout/stdout.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/stdout/stdout.wit.go -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/terminal-input/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/terminal-input/empty.s -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/terminal-input/terminal-input.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/terminal-input/terminal-input.wasm.go -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/terminal-input/terminal-input.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/terminal-input/terminal-input.wit.go -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/terminal-output/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/terminal-output/empty.s -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/terminal-output/terminal-output.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/terminal-output/terminal-output.wasm.go -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/terminal-output/terminal-output.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/terminal-output/terminal-output.wit.go -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/terminal-stderr/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/terminal-stderr/empty.s -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/terminal-stderr/terminal-stderr.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/terminal-stderr/terminal-stderr.wasm.go -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/terminal-stderr/terminal-stderr.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/terminal-stderr/terminal-stderr.wit.go -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/terminal-stdin/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/terminal-stdin/empty.s -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/terminal-stdin/terminal-stdin.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/terminal-stdin/terminal-stdin.wasm.go -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/terminal-stdin/terminal-stdin.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/terminal-stdin/terminal-stdin.wit.go -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/terminal-stdout/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/terminal-stdout/empty.s -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/terminal-stdout/terminal-stdout.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/terminal-stdout/terminal-stdout.wasm.go -------------------------------------------------------------------------------- /tests/generated/wasi/cli/v0.2.0/terminal-stdout/terminal-stdout.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/cli/v0.2.0/terminal-stdout/terminal-stdout.wit.go -------------------------------------------------------------------------------- /tests/generated/wasi/clocks/v0.2.0/monotonic-clock/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/clocks/v0.2.0/monotonic-clock/empty.s -------------------------------------------------------------------------------- /tests/generated/wasi/clocks/v0.2.0/monotonic-clock/monotonic-clock.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/clocks/v0.2.0/monotonic-clock/monotonic-clock.wasm.go -------------------------------------------------------------------------------- /tests/generated/wasi/clocks/v0.2.0/monotonic-clock/monotonic-clock.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/clocks/v0.2.0/monotonic-clock/monotonic-clock.wit.go -------------------------------------------------------------------------------- /tests/generated/wasi/clocks/v0.2.0/wall-clock/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/clocks/v0.2.0/wall-clock/empty.s -------------------------------------------------------------------------------- /tests/generated/wasi/clocks/v0.2.0/wall-clock/wall-clock.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/clocks/v0.2.0/wall-clock/wall-clock.wasm.go -------------------------------------------------------------------------------- /tests/generated/wasi/clocks/v0.2.0/wall-clock/wall-clock.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/clocks/v0.2.0/wall-clock/wall-clock.wit.go -------------------------------------------------------------------------------- /tests/generated/wasi/filesystem/v0.2.0/preopens/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/filesystem/v0.2.0/preopens/empty.s -------------------------------------------------------------------------------- /tests/generated/wasi/filesystem/v0.2.0/preopens/preopens.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/filesystem/v0.2.0/preopens/preopens.wasm.go -------------------------------------------------------------------------------- /tests/generated/wasi/filesystem/v0.2.0/preopens/preopens.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/filesystem/v0.2.0/preopens/preopens.wit.go -------------------------------------------------------------------------------- /tests/generated/wasi/filesystem/v0.2.0/types/abi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/filesystem/v0.2.0/types/abi.go -------------------------------------------------------------------------------- /tests/generated/wasi/filesystem/v0.2.0/types/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/filesystem/v0.2.0/types/empty.s -------------------------------------------------------------------------------- /tests/generated/wasi/filesystem/v0.2.0/types/types.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/filesystem/v0.2.0/types/types.wasm.go -------------------------------------------------------------------------------- /tests/generated/wasi/filesystem/v0.2.0/types/types.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/filesystem/v0.2.0/types/types.wit.go -------------------------------------------------------------------------------- /tests/generated/wasi/io/v0.2.0/error/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/io/v0.2.0/error/empty.s -------------------------------------------------------------------------------- /tests/generated/wasi/io/v0.2.0/error/error.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/io/v0.2.0/error/error.wasm.go -------------------------------------------------------------------------------- /tests/generated/wasi/io/v0.2.0/error/error.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/io/v0.2.0/error/error.wit.go -------------------------------------------------------------------------------- /tests/generated/wasi/io/v0.2.0/poll/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/io/v0.2.0/poll/empty.s -------------------------------------------------------------------------------- /tests/generated/wasi/io/v0.2.0/poll/poll.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/io/v0.2.0/poll/poll.wasm.go -------------------------------------------------------------------------------- /tests/generated/wasi/io/v0.2.0/poll/poll.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/io/v0.2.0/poll/poll.wit.go -------------------------------------------------------------------------------- /tests/generated/wasi/io/v0.2.0/streams/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/io/v0.2.0/streams/empty.s -------------------------------------------------------------------------------- /tests/generated/wasi/io/v0.2.0/streams/streams.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/io/v0.2.0/streams/streams.wasm.go -------------------------------------------------------------------------------- /tests/generated/wasi/io/v0.2.0/streams/streams.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/io/v0.2.0/streams/streams.wit.go -------------------------------------------------------------------------------- /tests/generated/wasi/random/v0.2.0/insecure-seed/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/random/v0.2.0/insecure-seed/empty.s -------------------------------------------------------------------------------- /tests/generated/wasi/random/v0.2.0/insecure-seed/insecure-seed.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/random/v0.2.0/insecure-seed/insecure-seed.wasm.go -------------------------------------------------------------------------------- /tests/generated/wasi/random/v0.2.0/insecure-seed/insecure-seed.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/random/v0.2.0/insecure-seed/insecure-seed.wit.go -------------------------------------------------------------------------------- /tests/generated/wasi/random/v0.2.0/insecure/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/random/v0.2.0/insecure/empty.s -------------------------------------------------------------------------------- /tests/generated/wasi/random/v0.2.0/insecure/insecure.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/random/v0.2.0/insecure/insecure.wasm.go -------------------------------------------------------------------------------- /tests/generated/wasi/random/v0.2.0/insecure/insecure.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/random/v0.2.0/insecure/insecure.wit.go -------------------------------------------------------------------------------- /tests/generated/wasi/random/v0.2.0/random/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/random/v0.2.0/random/empty.s -------------------------------------------------------------------------------- /tests/generated/wasi/random/v0.2.0/random/random.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/random/v0.2.0/random/random.wasm.go -------------------------------------------------------------------------------- /tests/generated/wasi/random/v0.2.0/random/random.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/random/v0.2.0/random/random.wit.go -------------------------------------------------------------------------------- /tests/generated/wasi/sockets/v0.2.0/instance-network/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/sockets/v0.2.0/instance-network/empty.s -------------------------------------------------------------------------------- /tests/generated/wasi/sockets/v0.2.0/instance-network/instance-network.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/sockets/v0.2.0/instance-network/instance-network.wasm.go -------------------------------------------------------------------------------- /tests/generated/wasi/sockets/v0.2.0/instance-network/instance-network.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/sockets/v0.2.0/instance-network/instance-network.wit.go -------------------------------------------------------------------------------- /tests/generated/wasi/sockets/v0.2.0/ip-name-lookup/abi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/sockets/v0.2.0/ip-name-lookup/abi.go -------------------------------------------------------------------------------- /tests/generated/wasi/sockets/v0.2.0/ip-name-lookup/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/sockets/v0.2.0/ip-name-lookup/empty.s -------------------------------------------------------------------------------- /tests/generated/wasi/sockets/v0.2.0/ip-name-lookup/ip-name-lookup.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/sockets/v0.2.0/ip-name-lookup/ip-name-lookup.wasm.go -------------------------------------------------------------------------------- /tests/generated/wasi/sockets/v0.2.0/ip-name-lookup/ip-name-lookup.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/sockets/v0.2.0/ip-name-lookup/ip-name-lookup.wit.go -------------------------------------------------------------------------------- /tests/generated/wasi/sockets/v0.2.0/network/abi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/sockets/v0.2.0/network/abi.go -------------------------------------------------------------------------------- /tests/generated/wasi/sockets/v0.2.0/network/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/sockets/v0.2.0/network/empty.s -------------------------------------------------------------------------------- /tests/generated/wasi/sockets/v0.2.0/network/network.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/sockets/v0.2.0/network/network.wasm.go -------------------------------------------------------------------------------- /tests/generated/wasi/sockets/v0.2.0/network/network.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/sockets/v0.2.0/network/network.wit.go -------------------------------------------------------------------------------- /tests/generated/wasi/sockets/v0.2.0/tcp-create-socket/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/sockets/v0.2.0/tcp-create-socket/empty.s -------------------------------------------------------------------------------- /tests/generated/wasi/sockets/v0.2.0/tcp-create-socket/tcp-create-socket.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/sockets/v0.2.0/tcp-create-socket/tcp-create-socket.wasm.go -------------------------------------------------------------------------------- /tests/generated/wasi/sockets/v0.2.0/tcp-create-socket/tcp-create-socket.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/sockets/v0.2.0/tcp-create-socket/tcp-create-socket.wit.go -------------------------------------------------------------------------------- /tests/generated/wasi/sockets/v0.2.0/tcp/abi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/sockets/v0.2.0/tcp/abi.go -------------------------------------------------------------------------------- /tests/generated/wasi/sockets/v0.2.0/tcp/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/sockets/v0.2.0/tcp/empty.s -------------------------------------------------------------------------------- /tests/generated/wasi/sockets/v0.2.0/tcp/tcp.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/sockets/v0.2.0/tcp/tcp.wasm.go -------------------------------------------------------------------------------- /tests/generated/wasi/sockets/v0.2.0/tcp/tcp.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/sockets/v0.2.0/tcp/tcp.wit.go -------------------------------------------------------------------------------- /tests/generated/wasi/sockets/v0.2.0/udp-create-socket/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/sockets/v0.2.0/udp-create-socket/empty.s -------------------------------------------------------------------------------- /tests/generated/wasi/sockets/v0.2.0/udp-create-socket/udp-create-socket.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/sockets/v0.2.0/udp-create-socket/udp-create-socket.wasm.go -------------------------------------------------------------------------------- /tests/generated/wasi/sockets/v0.2.0/udp-create-socket/udp-create-socket.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/sockets/v0.2.0/udp-create-socket/udp-create-socket.wit.go -------------------------------------------------------------------------------- /tests/generated/wasi/sockets/v0.2.0/udp/abi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/sockets/v0.2.0/udp/abi.go -------------------------------------------------------------------------------- /tests/generated/wasi/sockets/v0.2.0/udp/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/sockets/v0.2.0/udp/empty.s -------------------------------------------------------------------------------- /tests/generated/wasi/sockets/v0.2.0/udp/udp.wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/sockets/v0.2.0/udp/udp.wasm.go -------------------------------------------------------------------------------- /tests/generated/wasi/sockets/v0.2.0/udp/udp.wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/generated/wasi/sockets/v0.2.0/udp/udp.wit.go -------------------------------------------------------------------------------- /tests/go.mod: -------------------------------------------------------------------------------- 1 | module tests 2 | 3 | go 1.23.0 4 | -------------------------------------------------------------------------------- /tests/json/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/json/json_test.go -------------------------------------------------------------------------------- /tests/sockets/sockets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/sockets/sockets_test.go -------------------------------------------------------------------------------- /tests/tests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/tests.go -------------------------------------------------------------------------------- /tests/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/tests/tools.go -------------------------------------------------------------------------------- /wit/abi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/abi.go -------------------------------------------------------------------------------- /wit/abi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/abi_test.go -------------------------------------------------------------------------------- /wit/bindgen/abi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/bindgen/abi.go -------------------------------------------------------------------------------- /wit/bindgen/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/bindgen/docs.go -------------------------------------------------------------------------------- /wit/bindgen/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/bindgen/generate.go -------------------------------------------------------------------------------- /wit/bindgen/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/bindgen/generator.go -------------------------------------------------------------------------------- /wit/bindgen/names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/bindgen/names.go -------------------------------------------------------------------------------- /wit/bindgen/names_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/bindgen/names_test.go -------------------------------------------------------------------------------- /wit/bindgen/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/bindgen/options.go -------------------------------------------------------------------------------- /wit/bindgen/testdata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/bindgen/testdata_test.go -------------------------------------------------------------------------------- /wit/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/codec.go -------------------------------------------------------------------------------- /wit/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/docs.go -------------------------------------------------------------------------------- /wit/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/enum.go -------------------------------------------------------------------------------- /wit/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/flags.go -------------------------------------------------------------------------------- /wit/function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/function.go -------------------------------------------------------------------------------- /wit/future.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/future.go -------------------------------------------------------------------------------- /wit/ident.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/ident.go -------------------------------------------------------------------------------- /wit/ident_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/ident_test.go -------------------------------------------------------------------------------- /wit/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/interface.go -------------------------------------------------------------------------------- /wit/iterate/iterate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/iterate/iterate.go -------------------------------------------------------------------------------- /wit/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/list.go -------------------------------------------------------------------------------- /wit/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/list_test.go -------------------------------------------------------------------------------- /wit/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/load.go -------------------------------------------------------------------------------- /wit/logging/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/logging/logging.go -------------------------------------------------------------------------------- /wit/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/option.go -------------------------------------------------------------------------------- /wit/ordered/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/ordered/list.go -------------------------------------------------------------------------------- /wit/ordered/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/ordered/map.go -------------------------------------------------------------------------------- /wit/ordered/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/ordered/map_test.go -------------------------------------------------------------------------------- /wit/package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/package.go -------------------------------------------------------------------------------- /wit/pointer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/pointer.go -------------------------------------------------------------------------------- /wit/record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/record.go -------------------------------------------------------------------------------- /wit/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/resolve.go -------------------------------------------------------------------------------- /wit/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/resource.go -------------------------------------------------------------------------------- /wit/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/result.go -------------------------------------------------------------------------------- /wit/stability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/stability.go -------------------------------------------------------------------------------- /wit/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/stream.go -------------------------------------------------------------------------------- /wit/testdata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/testdata_test.go -------------------------------------------------------------------------------- /wit/tuple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/tuple.go -------------------------------------------------------------------------------- /wit/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/type.go -------------------------------------------------------------------------------- /wit/typedef.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/typedef.go -------------------------------------------------------------------------------- /wit/variant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/variant.go -------------------------------------------------------------------------------- /wit/wit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/wit.go -------------------------------------------------------------------------------- /wit/world.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/wit/world.go -------------------------------------------------------------------------------- /x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/x/README.md -------------------------------------------------------------------------------- /x/cabi/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/x/cabi/docs.go -------------------------------------------------------------------------------- /x/cabi/realloc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/x/cabi/realloc.go -------------------------------------------------------------------------------- /x/cabi/realloc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/go-modules/HEAD/x/cabi/realloc_test.go --------------------------------------------------------------------------------