├── .gitattributes ├── .gitignore ├── .gitmodules ├── .travis.yml ├── Contributing.md ├── LICENSE ├── README.md ├── deploy_key.enc ├── document ├── Makefile ├── README.md ├── core │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── appendix │ │ ├── algorithm.rst │ │ ├── custom.rst │ │ ├── embedding.rst │ │ ├── implementation.rst │ │ ├── index-instructions.rst │ │ ├── index-rules.rst │ │ ├── index-types.rst │ │ ├── index.rst │ │ └── properties.rst │ ├── binary │ │ ├── conventions.rst │ │ ├── index.rst │ │ ├── instructions.rst │ │ ├── modules.rst │ │ ├── types.rst │ │ └── values.rst │ ├── conf.py │ ├── exec │ │ ├── conventions.rst │ │ ├── index.rst │ │ ├── instructions.rst │ │ ├── modules.rst │ │ ├── numerics.rst │ │ └── runtime.rst │ ├── index.bs │ ├── index.rst │ ├── intro │ │ ├── index.rst │ │ ├── introduction.rst │ │ └── overview.rst │ ├── make.bat │ ├── static │ │ ├── custom.css │ │ └── webassembly.png │ ├── syntax │ │ ├── conventions.rst │ │ ├── index.rst │ │ ├── instructions.rst │ │ ├── modules.rst │ │ ├── types.rst │ │ └── values.rst │ ├── text │ │ ├── conventions.rst │ │ ├── index.rst │ │ ├── instructions.rst │ │ ├── lexical.rst │ │ ├── modules.rst │ │ ├── types.rst │ │ └── values.rst │ ├── util │ │ ├── README.htmldiff.pl │ │ ├── bikeshed │ │ │ └── conf.py │ │ ├── bikeshed_fixup.py │ │ ├── katex_fix.patch │ │ ├── macros.def │ │ ├── mathdef.py │ │ ├── mathdefbs.py │ │ ├── mathjax2katex.py │ │ └── pseudo-lexer.py │ └── valid │ │ ├── conventions.rst │ │ ├── index.rst │ │ ├── instructions.rst │ │ ├── modules.rst │ │ └── types.rst ├── deploy.sh ├── index.html ├── js-api │ ├── Makefile │ └── index.bs ├── travis-deploy.sh ├── util │ └── htmldiff.pl └── web-api │ ├── Makefile │ └── index.bs ├── interpreter ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── binary │ ├── decode.ml │ ├── decode.mli │ ├── encode.ml │ ├── encode.mli │ ├── utf8.ml │ └── utf8.mli ├── exec │ ├── eval.ml │ ├── eval.mli │ ├── eval_numeric.ml │ ├── eval_numeric.mli │ ├── f32.ml │ ├── f32_convert.ml │ ├── f32_convert.mli │ ├── f64.ml │ ├── f64_convert.ml │ ├── f64_convert.mli │ ├── fxx.ml │ ├── i32.ml │ ├── i32_convert.ml │ ├── i32_convert.mli │ ├── i64.ml │ ├── i64_convert.ml │ ├── i64_convert.mli │ ├── ixx.ml │ └── numeric_error.ml ├── host │ ├── env.ml │ └── spectest.ml ├── main │ ├── flags.ml │ └── main.ml ├── meta │ ├── findlib │ │ └── META │ ├── jslib │ │ ├── bsconfig.json │ │ ├── build.sh │ │ └── wasm.ml │ └── travis │ │ ├── build-test.sh │ │ └── install-ocaml.sh ├── runtime │ ├── func.ml │ ├── func.mli │ ├── global.ml │ ├── global.mli │ ├── instance.ml │ ├── memory.ml │ ├── memory.mli │ ├── table.ml │ ├── table.mli │ └── value.ml ├── script │ ├── import.ml │ ├── import.mli │ ├── js.ml │ ├── js.mli │ ├── run.ml │ ├── run.mli │ └── script.ml ├── syntax │ ├── ast.ml │ ├── free.ml │ ├── free.mli │ ├── operators.ml │ └── types.ml ├── text │ ├── arrange.ml │ ├── arrange.mli │ ├── lexer.mli │ ├── lexer.mll │ ├── parse.ml │ ├── parse.mli │ ├── parser.mly │ ├── print.ml │ └── print.mli ├── util │ ├── error.ml │ ├── error.mli │ ├── lib.ml │ ├── lib.mli │ ├── sexpr.ml │ ├── sexpr.mli │ ├── source.ml │ └── source.mli ├── valid │ ├── match.ml │ ├── match.mli │ ├── valid.ml │ └── valid.mli └── winmake.bat ├── papers ├── LICENSE ├── README.md ├── oopsla2019.pdf └── pldi2017.pdf ├── proposals ├── README.md ├── bulk-memory-operations │ └── Overview.md ├── function-references │ └── Overview.md ├── multi-value │ └── Overview.md ├── nontrapping-float-to-int-conversion │ └── Overview.md ├── reference-types │ └── Overview.md ├── sign-extension-ops │ └── Overview.md └── type-imports │ └── Overview.md ├── test ├── LICENSE ├── README.md ├── Todo.md ├── build.py ├── core │ ├── .gitignore │ ├── README.md │ ├── address.wast │ ├── align.wast │ ├── binary-leb128.wast │ ├── binary.wast │ ├── block.wast │ ├── br.wast │ ├── br_if.wast │ ├── br_on_null.wast │ ├── br_table.wast │ ├── bulk.wast │ ├── call.wast │ ├── call_indirect.wast │ ├── call_ref.wast │ ├── comments.wast │ ├── const.wast │ ├── conversions.wast │ ├── custom.wast │ ├── data.wast │ ├── elem.wast │ ├── endianness.wast │ ├── exports.wast │ ├── f32.wast │ ├── f32_bitwise.wast │ ├── f32_cmp.wast │ ├── f64.wast │ ├── f64_bitwise.wast │ ├── f64_cmp.wast │ ├── fac.wast │ ├── float_exprs.wast │ ├── float_literals.wast │ ├── float_memory.wast │ ├── float_misc.wast │ ├── forward.wast │ ├── func.wast │ ├── func_bind.wast │ ├── func_ptrs.wast │ ├── global.wast │ ├── i32.wast │ ├── i64.wast │ ├── if.wast │ ├── imports.wast │ ├── inline-module.wast │ ├── int_exprs.wast │ ├── int_literals.wast │ ├── labels.wast │ ├── left-to-right.wast │ ├── let.wast │ ├── linking.wast │ ├── load.wast │ ├── local_get.wast │ ├── local_set.wast │ ├── local_tee.wast │ ├── loop.wast │ ├── memory.wast │ ├── memory_copy.wast │ ├── memory_fill.wast │ ├── memory_grow.wast │ ├── memory_init.wast │ ├── memory_redundancy.wast │ ├── memory_size.wast │ ├── memory_trap.wast │ ├── names.wast │ ├── nop.wast │ ├── ref.wast │ ├── ref_as_non_null.wast │ ├── ref_func.wast │ ├── ref_is_null.wast │ ├── ref_null.wast │ ├── return.wast │ ├── return_call_ref.wast │ ├── run.py │ ├── select.wast │ ├── skip-stack-guard-page.wast │ ├── stack.wast │ ├── start.wast │ ├── store.wast │ ├── switch.wast │ ├── table-sub.wast │ ├── table.wast │ ├── table_copy.wast │ ├── table_fill.wast │ ├── table_get.wast │ ├── table_grow.wast │ ├── table_init.wast │ ├── table_set.wast │ ├── table_size.wast │ ├── token.wast │ ├── traps.wast │ ├── type-equivalence.wast │ ├── type.wast │ ├── unreachable.wast │ ├── unreached-invalid.wast │ ├── unwind.wast │ ├── utf8-custom-section-id.wast │ ├── utf8-import-field.wast │ ├── utf8-import-module.wast │ └── utf8-invalid-encoding.wast ├── harness │ ├── async_index.js │ ├── sync_index.js │ ├── testharness.css │ ├── testharness.js │ └── testharnessreport.js ├── js-api │ ├── LICENSE.md │ ├── README.md │ ├── assertions.js │ ├── bad-imports.js │ ├── constructor │ ├── error-interfaces-no-symbol-tostringtag.js │ ├── global │ │ ├── constructor.any.js │ │ ├── toString.any.js │ │ ├── value-get-set.any.js │ │ └── valueOf.any.js │ ├── instance │ │ ├── constructor-bad-imports.any.js │ │ ├── constructor-caching.any.js │ │ ├── constructor.any.js │ │ ├── exports.any.js │ │ └── toString.any.js │ ├── instanceTestFactory.js │ ├── interface.any.js │ ├── limits.any.js │ ├── memory │ │ ├── assertions.js │ │ ├── buffer.any.js │ │ ├── constructor.any.js │ │ ├── grow.any.js │ │ └── toString.any.js │ ├── module │ │ ├── constructor.any.js │ │ ├── customSections.any.js │ │ ├── exports.any.js │ │ ├── imports.any.js │ │ └── toString.any.js │ ├── prototypes.any.js │ ├── table │ │ ├── assertions.js │ │ ├── constructor.any.js │ │ ├── get-set.any.js │ │ ├── grow.any.js │ │ ├── length.any.js │ │ └── toString.any.js │ └── wasm-module-builder.js ├── meta │ ├── Makefile │ ├── README.md │ ├── common.js │ ├── generate_memory_copy.js │ ├── generate_memory_fill.js │ ├── generate_memory_init.js │ ├── generate_table_copy.js │ ├── generate_table_init.js │ └── noderun.sh └── sync-js-api.py └── w3c.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/.travis.yml -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/README.md -------------------------------------------------------------------------------- /deploy_key.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/deploy_key.enc -------------------------------------------------------------------------------- /document/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/Makefile -------------------------------------------------------------------------------- /document/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/README.md -------------------------------------------------------------------------------- /document/core/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | _static 3 | document/*.pyc 4 | -------------------------------------------------------------------------------- /document/core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/LICENSE -------------------------------------------------------------------------------- /document/core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/Makefile -------------------------------------------------------------------------------- /document/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/README.md -------------------------------------------------------------------------------- /document/core/appendix/algorithm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/appendix/algorithm.rst -------------------------------------------------------------------------------- /document/core/appendix/custom.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/appendix/custom.rst -------------------------------------------------------------------------------- /document/core/appendix/embedding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/appendix/embedding.rst -------------------------------------------------------------------------------- /document/core/appendix/implementation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/appendix/implementation.rst -------------------------------------------------------------------------------- /document/core/appendix/index-instructions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/appendix/index-instructions.rst -------------------------------------------------------------------------------- /document/core/appendix/index-rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/appendix/index-rules.rst -------------------------------------------------------------------------------- /document/core/appendix/index-types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/appendix/index-types.rst -------------------------------------------------------------------------------- /document/core/appendix/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/appendix/index.rst -------------------------------------------------------------------------------- /document/core/appendix/properties.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/appendix/properties.rst -------------------------------------------------------------------------------- /document/core/binary/conventions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/binary/conventions.rst -------------------------------------------------------------------------------- /document/core/binary/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/binary/index.rst -------------------------------------------------------------------------------- /document/core/binary/instructions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/binary/instructions.rst -------------------------------------------------------------------------------- /document/core/binary/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/binary/modules.rst -------------------------------------------------------------------------------- /document/core/binary/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/binary/types.rst -------------------------------------------------------------------------------- /document/core/binary/values.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/binary/values.rst -------------------------------------------------------------------------------- /document/core/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/conf.py -------------------------------------------------------------------------------- /document/core/exec/conventions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/exec/conventions.rst -------------------------------------------------------------------------------- /document/core/exec/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/exec/index.rst -------------------------------------------------------------------------------- /document/core/exec/instructions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/exec/instructions.rst -------------------------------------------------------------------------------- /document/core/exec/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/exec/modules.rst -------------------------------------------------------------------------------- /document/core/exec/numerics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/exec/numerics.rst -------------------------------------------------------------------------------- /document/core/exec/runtime.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/exec/runtime.rst -------------------------------------------------------------------------------- /document/core/index.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/index.bs -------------------------------------------------------------------------------- /document/core/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/index.rst -------------------------------------------------------------------------------- /document/core/intro/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/intro/index.rst -------------------------------------------------------------------------------- /document/core/intro/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/intro/introduction.rst -------------------------------------------------------------------------------- /document/core/intro/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/intro/overview.rst -------------------------------------------------------------------------------- /document/core/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/make.bat -------------------------------------------------------------------------------- /document/core/static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/static/custom.css -------------------------------------------------------------------------------- /document/core/static/webassembly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/static/webassembly.png -------------------------------------------------------------------------------- /document/core/syntax/conventions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/syntax/conventions.rst -------------------------------------------------------------------------------- /document/core/syntax/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/syntax/index.rst -------------------------------------------------------------------------------- /document/core/syntax/instructions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/syntax/instructions.rst -------------------------------------------------------------------------------- /document/core/syntax/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/syntax/modules.rst -------------------------------------------------------------------------------- /document/core/syntax/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/syntax/types.rst -------------------------------------------------------------------------------- /document/core/syntax/values.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/syntax/values.rst -------------------------------------------------------------------------------- /document/core/text/conventions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/text/conventions.rst -------------------------------------------------------------------------------- /document/core/text/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/text/index.rst -------------------------------------------------------------------------------- /document/core/text/instructions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/text/instructions.rst -------------------------------------------------------------------------------- /document/core/text/lexical.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/text/lexical.rst -------------------------------------------------------------------------------- /document/core/text/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/text/modules.rst -------------------------------------------------------------------------------- /document/core/text/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/text/types.rst -------------------------------------------------------------------------------- /document/core/text/values.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/text/values.rst -------------------------------------------------------------------------------- /document/core/util/README.htmldiff.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/util/README.htmldiff.pl -------------------------------------------------------------------------------- /document/core/util/bikeshed/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/util/bikeshed/conf.py -------------------------------------------------------------------------------- /document/core/util/bikeshed_fixup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/util/bikeshed_fixup.py -------------------------------------------------------------------------------- /document/core/util/katex_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/util/katex_fix.patch -------------------------------------------------------------------------------- /document/core/util/macros.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/util/macros.def -------------------------------------------------------------------------------- /document/core/util/mathdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/util/mathdef.py -------------------------------------------------------------------------------- /document/core/util/mathdefbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/util/mathdefbs.py -------------------------------------------------------------------------------- /document/core/util/mathjax2katex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/util/mathjax2katex.py -------------------------------------------------------------------------------- /document/core/util/pseudo-lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/util/pseudo-lexer.py -------------------------------------------------------------------------------- /document/core/valid/conventions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/valid/conventions.rst -------------------------------------------------------------------------------- /document/core/valid/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/valid/index.rst -------------------------------------------------------------------------------- /document/core/valid/instructions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/valid/instructions.rst -------------------------------------------------------------------------------- /document/core/valid/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/valid/modules.rst -------------------------------------------------------------------------------- /document/core/valid/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/core/valid/types.rst -------------------------------------------------------------------------------- /document/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/deploy.sh -------------------------------------------------------------------------------- /document/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/index.html -------------------------------------------------------------------------------- /document/js-api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/js-api/Makefile -------------------------------------------------------------------------------- /document/js-api/index.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/js-api/index.bs -------------------------------------------------------------------------------- /document/travis-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/travis-deploy.sh -------------------------------------------------------------------------------- /document/util/htmldiff.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/util/htmldiff.pl -------------------------------------------------------------------------------- /document/web-api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/web-api/Makefile -------------------------------------------------------------------------------- /document/web-api/index.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/document/web-api/index.bs -------------------------------------------------------------------------------- /interpreter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/.gitignore -------------------------------------------------------------------------------- /interpreter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/LICENSE -------------------------------------------------------------------------------- /interpreter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/Makefile -------------------------------------------------------------------------------- /interpreter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/README.md -------------------------------------------------------------------------------- /interpreter/binary/decode.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/binary/decode.ml -------------------------------------------------------------------------------- /interpreter/binary/decode.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/binary/decode.mli -------------------------------------------------------------------------------- /interpreter/binary/encode.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/binary/encode.ml -------------------------------------------------------------------------------- /interpreter/binary/encode.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/binary/encode.mli -------------------------------------------------------------------------------- /interpreter/binary/utf8.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/binary/utf8.ml -------------------------------------------------------------------------------- /interpreter/binary/utf8.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/binary/utf8.mli -------------------------------------------------------------------------------- /interpreter/exec/eval.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/exec/eval.ml -------------------------------------------------------------------------------- /interpreter/exec/eval.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/exec/eval.mli -------------------------------------------------------------------------------- /interpreter/exec/eval_numeric.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/exec/eval_numeric.ml -------------------------------------------------------------------------------- /interpreter/exec/eval_numeric.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/exec/eval_numeric.mli -------------------------------------------------------------------------------- /interpreter/exec/f32.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/exec/f32.ml -------------------------------------------------------------------------------- /interpreter/exec/f32_convert.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/exec/f32_convert.ml -------------------------------------------------------------------------------- /interpreter/exec/f32_convert.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/exec/f32_convert.mli -------------------------------------------------------------------------------- /interpreter/exec/f64.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/exec/f64.ml -------------------------------------------------------------------------------- /interpreter/exec/f64_convert.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/exec/f64_convert.ml -------------------------------------------------------------------------------- /interpreter/exec/f64_convert.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/exec/f64_convert.mli -------------------------------------------------------------------------------- /interpreter/exec/fxx.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/exec/fxx.ml -------------------------------------------------------------------------------- /interpreter/exec/i32.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/exec/i32.ml -------------------------------------------------------------------------------- /interpreter/exec/i32_convert.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/exec/i32_convert.ml -------------------------------------------------------------------------------- /interpreter/exec/i32_convert.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/exec/i32_convert.mli -------------------------------------------------------------------------------- /interpreter/exec/i64.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/exec/i64.ml -------------------------------------------------------------------------------- /interpreter/exec/i64_convert.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/exec/i64_convert.ml -------------------------------------------------------------------------------- /interpreter/exec/i64_convert.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/exec/i64_convert.mli -------------------------------------------------------------------------------- /interpreter/exec/ixx.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/exec/ixx.ml -------------------------------------------------------------------------------- /interpreter/exec/numeric_error.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/exec/numeric_error.ml -------------------------------------------------------------------------------- /interpreter/host/env.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/host/env.ml -------------------------------------------------------------------------------- /interpreter/host/spectest.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/host/spectest.ml -------------------------------------------------------------------------------- /interpreter/main/flags.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/main/flags.ml -------------------------------------------------------------------------------- /interpreter/main/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/main/main.ml -------------------------------------------------------------------------------- /interpreter/meta/findlib/META: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/meta/findlib/META -------------------------------------------------------------------------------- /interpreter/meta/jslib/bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/meta/jslib/bsconfig.json -------------------------------------------------------------------------------- /interpreter/meta/jslib/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/meta/jslib/build.sh -------------------------------------------------------------------------------- /interpreter/meta/jslib/wasm.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/meta/jslib/wasm.ml -------------------------------------------------------------------------------- /interpreter/meta/travis/build-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/meta/travis/build-test.sh -------------------------------------------------------------------------------- /interpreter/meta/travis/install-ocaml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/meta/travis/install-ocaml.sh -------------------------------------------------------------------------------- /interpreter/runtime/func.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/runtime/func.ml -------------------------------------------------------------------------------- /interpreter/runtime/func.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/runtime/func.mli -------------------------------------------------------------------------------- /interpreter/runtime/global.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/runtime/global.ml -------------------------------------------------------------------------------- /interpreter/runtime/global.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/runtime/global.mli -------------------------------------------------------------------------------- /interpreter/runtime/instance.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/runtime/instance.ml -------------------------------------------------------------------------------- /interpreter/runtime/memory.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/runtime/memory.ml -------------------------------------------------------------------------------- /interpreter/runtime/memory.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/runtime/memory.mli -------------------------------------------------------------------------------- /interpreter/runtime/table.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/runtime/table.ml -------------------------------------------------------------------------------- /interpreter/runtime/table.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/runtime/table.mli -------------------------------------------------------------------------------- /interpreter/runtime/value.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/runtime/value.ml -------------------------------------------------------------------------------- /interpreter/script/import.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/script/import.ml -------------------------------------------------------------------------------- /interpreter/script/import.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/script/import.mli -------------------------------------------------------------------------------- /interpreter/script/js.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/script/js.ml -------------------------------------------------------------------------------- /interpreter/script/js.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/script/js.mli -------------------------------------------------------------------------------- /interpreter/script/run.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/script/run.ml -------------------------------------------------------------------------------- /interpreter/script/run.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/script/run.mli -------------------------------------------------------------------------------- /interpreter/script/script.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/script/script.ml -------------------------------------------------------------------------------- /interpreter/syntax/ast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/syntax/ast.ml -------------------------------------------------------------------------------- /interpreter/syntax/free.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/syntax/free.ml -------------------------------------------------------------------------------- /interpreter/syntax/free.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/syntax/free.mli -------------------------------------------------------------------------------- /interpreter/syntax/operators.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/syntax/operators.ml -------------------------------------------------------------------------------- /interpreter/syntax/types.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/syntax/types.ml -------------------------------------------------------------------------------- /interpreter/text/arrange.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/text/arrange.ml -------------------------------------------------------------------------------- /interpreter/text/arrange.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/text/arrange.mli -------------------------------------------------------------------------------- /interpreter/text/lexer.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/text/lexer.mli -------------------------------------------------------------------------------- /interpreter/text/lexer.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/text/lexer.mll -------------------------------------------------------------------------------- /interpreter/text/parse.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/text/parse.ml -------------------------------------------------------------------------------- /interpreter/text/parse.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/text/parse.mli -------------------------------------------------------------------------------- /interpreter/text/parser.mly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/text/parser.mly -------------------------------------------------------------------------------- /interpreter/text/print.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/text/print.ml -------------------------------------------------------------------------------- /interpreter/text/print.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/text/print.mli -------------------------------------------------------------------------------- /interpreter/util/error.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/util/error.ml -------------------------------------------------------------------------------- /interpreter/util/error.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/util/error.mli -------------------------------------------------------------------------------- /interpreter/util/lib.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/util/lib.ml -------------------------------------------------------------------------------- /interpreter/util/lib.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/util/lib.mli -------------------------------------------------------------------------------- /interpreter/util/sexpr.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/util/sexpr.ml -------------------------------------------------------------------------------- /interpreter/util/sexpr.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/util/sexpr.mli -------------------------------------------------------------------------------- /interpreter/util/source.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/util/source.ml -------------------------------------------------------------------------------- /interpreter/util/source.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/util/source.mli -------------------------------------------------------------------------------- /interpreter/valid/match.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/valid/match.ml -------------------------------------------------------------------------------- /interpreter/valid/match.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/valid/match.mli -------------------------------------------------------------------------------- /interpreter/valid/valid.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/valid/valid.ml -------------------------------------------------------------------------------- /interpreter/valid/valid.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/valid/valid.mli -------------------------------------------------------------------------------- /interpreter/winmake.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/interpreter/winmake.bat -------------------------------------------------------------------------------- /papers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/papers/LICENSE -------------------------------------------------------------------------------- /papers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/papers/README.md -------------------------------------------------------------------------------- /papers/oopsla2019.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/papers/oopsla2019.pdf -------------------------------------------------------------------------------- /papers/pldi2017.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/papers/pldi2017.pdf -------------------------------------------------------------------------------- /proposals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/proposals/README.md -------------------------------------------------------------------------------- /proposals/bulk-memory-operations/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/proposals/bulk-memory-operations/Overview.md -------------------------------------------------------------------------------- /proposals/function-references/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/proposals/function-references/Overview.md -------------------------------------------------------------------------------- /proposals/multi-value/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/proposals/multi-value/Overview.md -------------------------------------------------------------------------------- /proposals/nontrapping-float-to-int-conversion/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/proposals/nontrapping-float-to-int-conversion/Overview.md -------------------------------------------------------------------------------- /proposals/reference-types/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/proposals/reference-types/Overview.md -------------------------------------------------------------------------------- /proposals/sign-extension-ops/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/proposals/sign-extension-ops/Overview.md -------------------------------------------------------------------------------- /proposals/type-imports/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/proposals/type-imports/Overview.md -------------------------------------------------------------------------------- /test/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/LICENSE -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/README.md -------------------------------------------------------------------------------- /test/Todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/Todo.md -------------------------------------------------------------------------------- /test/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/build.py -------------------------------------------------------------------------------- /test/core/.gitignore: -------------------------------------------------------------------------------- 1 | output -------------------------------------------------------------------------------- /test/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/README.md -------------------------------------------------------------------------------- /test/core/address.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/address.wast -------------------------------------------------------------------------------- /test/core/align.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/align.wast -------------------------------------------------------------------------------- /test/core/binary-leb128.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/binary-leb128.wast -------------------------------------------------------------------------------- /test/core/binary.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/binary.wast -------------------------------------------------------------------------------- /test/core/block.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/block.wast -------------------------------------------------------------------------------- /test/core/br.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/br.wast -------------------------------------------------------------------------------- /test/core/br_if.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/br_if.wast -------------------------------------------------------------------------------- /test/core/br_on_null.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/br_on_null.wast -------------------------------------------------------------------------------- /test/core/br_table.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/br_table.wast -------------------------------------------------------------------------------- /test/core/bulk.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/bulk.wast -------------------------------------------------------------------------------- /test/core/call.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/call.wast -------------------------------------------------------------------------------- /test/core/call_indirect.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/call_indirect.wast -------------------------------------------------------------------------------- /test/core/call_ref.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/call_ref.wast -------------------------------------------------------------------------------- /test/core/comments.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/comments.wast -------------------------------------------------------------------------------- /test/core/const.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/const.wast -------------------------------------------------------------------------------- /test/core/conversions.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/conversions.wast -------------------------------------------------------------------------------- /test/core/custom.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/custom.wast -------------------------------------------------------------------------------- /test/core/data.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/data.wast -------------------------------------------------------------------------------- /test/core/elem.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/elem.wast -------------------------------------------------------------------------------- /test/core/endianness.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/endianness.wast -------------------------------------------------------------------------------- /test/core/exports.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/exports.wast -------------------------------------------------------------------------------- /test/core/f32.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/f32.wast -------------------------------------------------------------------------------- /test/core/f32_bitwise.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/f32_bitwise.wast -------------------------------------------------------------------------------- /test/core/f32_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/f32_cmp.wast -------------------------------------------------------------------------------- /test/core/f64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/f64.wast -------------------------------------------------------------------------------- /test/core/f64_bitwise.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/f64_bitwise.wast -------------------------------------------------------------------------------- /test/core/f64_cmp.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/f64_cmp.wast -------------------------------------------------------------------------------- /test/core/fac.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/fac.wast -------------------------------------------------------------------------------- /test/core/float_exprs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/float_exprs.wast -------------------------------------------------------------------------------- /test/core/float_literals.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/float_literals.wast -------------------------------------------------------------------------------- /test/core/float_memory.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/float_memory.wast -------------------------------------------------------------------------------- /test/core/float_misc.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/float_misc.wast -------------------------------------------------------------------------------- /test/core/forward.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/forward.wast -------------------------------------------------------------------------------- /test/core/func.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/func.wast -------------------------------------------------------------------------------- /test/core/func_bind.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/func_bind.wast -------------------------------------------------------------------------------- /test/core/func_ptrs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/func_ptrs.wast -------------------------------------------------------------------------------- /test/core/global.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/global.wast -------------------------------------------------------------------------------- /test/core/i32.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/i32.wast -------------------------------------------------------------------------------- /test/core/i64.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/i64.wast -------------------------------------------------------------------------------- /test/core/if.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/if.wast -------------------------------------------------------------------------------- /test/core/imports.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/imports.wast -------------------------------------------------------------------------------- /test/core/inline-module.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/inline-module.wast -------------------------------------------------------------------------------- /test/core/int_exprs.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/int_exprs.wast -------------------------------------------------------------------------------- /test/core/int_literals.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/int_literals.wast -------------------------------------------------------------------------------- /test/core/labels.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/labels.wast -------------------------------------------------------------------------------- /test/core/left-to-right.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/left-to-right.wast -------------------------------------------------------------------------------- /test/core/let.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/let.wast -------------------------------------------------------------------------------- /test/core/linking.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/linking.wast -------------------------------------------------------------------------------- /test/core/load.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/load.wast -------------------------------------------------------------------------------- /test/core/local_get.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/local_get.wast -------------------------------------------------------------------------------- /test/core/local_set.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/local_set.wast -------------------------------------------------------------------------------- /test/core/local_tee.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/local_tee.wast -------------------------------------------------------------------------------- /test/core/loop.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/loop.wast -------------------------------------------------------------------------------- /test/core/memory.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/memory.wast -------------------------------------------------------------------------------- /test/core/memory_copy.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/memory_copy.wast -------------------------------------------------------------------------------- /test/core/memory_fill.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/memory_fill.wast -------------------------------------------------------------------------------- /test/core/memory_grow.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/memory_grow.wast -------------------------------------------------------------------------------- /test/core/memory_init.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/memory_init.wast -------------------------------------------------------------------------------- /test/core/memory_redundancy.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/memory_redundancy.wast -------------------------------------------------------------------------------- /test/core/memory_size.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/memory_size.wast -------------------------------------------------------------------------------- /test/core/memory_trap.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/memory_trap.wast -------------------------------------------------------------------------------- /test/core/names.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/names.wast -------------------------------------------------------------------------------- /test/core/nop.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/nop.wast -------------------------------------------------------------------------------- /test/core/ref.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/ref.wast -------------------------------------------------------------------------------- /test/core/ref_as_non_null.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/ref_as_non_null.wast -------------------------------------------------------------------------------- /test/core/ref_func.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/ref_func.wast -------------------------------------------------------------------------------- /test/core/ref_is_null.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/ref_is_null.wast -------------------------------------------------------------------------------- /test/core/ref_null.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/ref_null.wast -------------------------------------------------------------------------------- /test/core/return.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/return.wast -------------------------------------------------------------------------------- /test/core/return_call_ref.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/return_call_ref.wast -------------------------------------------------------------------------------- /test/core/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/run.py -------------------------------------------------------------------------------- /test/core/select.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/select.wast -------------------------------------------------------------------------------- /test/core/skip-stack-guard-page.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/skip-stack-guard-page.wast -------------------------------------------------------------------------------- /test/core/stack.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/stack.wast -------------------------------------------------------------------------------- /test/core/start.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/start.wast -------------------------------------------------------------------------------- /test/core/store.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/store.wast -------------------------------------------------------------------------------- /test/core/switch.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/switch.wast -------------------------------------------------------------------------------- /test/core/table-sub.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/table-sub.wast -------------------------------------------------------------------------------- /test/core/table.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/table.wast -------------------------------------------------------------------------------- /test/core/table_copy.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/table_copy.wast -------------------------------------------------------------------------------- /test/core/table_fill.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/table_fill.wast -------------------------------------------------------------------------------- /test/core/table_get.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/table_get.wast -------------------------------------------------------------------------------- /test/core/table_grow.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/table_grow.wast -------------------------------------------------------------------------------- /test/core/table_init.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/table_init.wast -------------------------------------------------------------------------------- /test/core/table_set.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/table_set.wast -------------------------------------------------------------------------------- /test/core/table_size.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/table_size.wast -------------------------------------------------------------------------------- /test/core/token.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/token.wast -------------------------------------------------------------------------------- /test/core/traps.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/traps.wast -------------------------------------------------------------------------------- /test/core/type-equivalence.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/type-equivalence.wast -------------------------------------------------------------------------------- /test/core/type.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/type.wast -------------------------------------------------------------------------------- /test/core/unreachable.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/unreachable.wast -------------------------------------------------------------------------------- /test/core/unreached-invalid.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/unreached-invalid.wast -------------------------------------------------------------------------------- /test/core/unwind.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/unwind.wast -------------------------------------------------------------------------------- /test/core/utf8-custom-section-id.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/utf8-custom-section-id.wast -------------------------------------------------------------------------------- /test/core/utf8-import-field.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/utf8-import-field.wast -------------------------------------------------------------------------------- /test/core/utf8-import-module.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/utf8-import-module.wast -------------------------------------------------------------------------------- /test/core/utf8-invalid-encoding.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/core/utf8-invalid-encoding.wast -------------------------------------------------------------------------------- /test/harness/async_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/harness/async_index.js -------------------------------------------------------------------------------- /test/harness/sync_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/harness/sync_index.js -------------------------------------------------------------------------------- /test/harness/testharness.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/harness/testharness.css -------------------------------------------------------------------------------- /test/harness/testharness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/harness/testharness.js -------------------------------------------------------------------------------- /test/harness/testharnessreport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/harness/testharnessreport.js -------------------------------------------------------------------------------- /test/js-api/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/LICENSE.md -------------------------------------------------------------------------------- /test/js-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/README.md -------------------------------------------------------------------------------- /test/js-api/assertions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/assertions.js -------------------------------------------------------------------------------- /test/js-api/bad-imports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/bad-imports.js -------------------------------------------------------------------------------- /test/js-api/constructor/compile.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/constructor/compile.any.js -------------------------------------------------------------------------------- /test/js-api/constructor/instantiate-bad-imports.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/constructor/instantiate-bad-imports.any.js -------------------------------------------------------------------------------- /test/js-api/constructor/instantiate.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/constructor/instantiate.any.js -------------------------------------------------------------------------------- /test/js-api/constructor/multi-value.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/constructor/multi-value.any.js -------------------------------------------------------------------------------- /test/js-api/constructor/validate.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/constructor/validate.any.js -------------------------------------------------------------------------------- /test/js-api/error-interfaces-no-symbol-tostringtag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/error-interfaces-no-symbol-tostringtag.js -------------------------------------------------------------------------------- /test/js-api/global/constructor.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/global/constructor.any.js -------------------------------------------------------------------------------- /test/js-api/global/toString.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/global/toString.any.js -------------------------------------------------------------------------------- /test/js-api/global/value-get-set.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/global/value-get-set.any.js -------------------------------------------------------------------------------- /test/js-api/global/valueOf.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/global/valueOf.any.js -------------------------------------------------------------------------------- /test/js-api/instance/constructor-bad-imports.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/instance/constructor-bad-imports.any.js -------------------------------------------------------------------------------- /test/js-api/instance/constructor-caching.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/instance/constructor-caching.any.js -------------------------------------------------------------------------------- /test/js-api/instance/constructor.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/instance/constructor.any.js -------------------------------------------------------------------------------- /test/js-api/instance/exports.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/instance/exports.any.js -------------------------------------------------------------------------------- /test/js-api/instance/toString.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/instance/toString.any.js -------------------------------------------------------------------------------- /test/js-api/instanceTestFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/instanceTestFactory.js -------------------------------------------------------------------------------- /test/js-api/interface.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/interface.any.js -------------------------------------------------------------------------------- /test/js-api/limits.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/limits.any.js -------------------------------------------------------------------------------- /test/js-api/memory/assertions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/memory/assertions.js -------------------------------------------------------------------------------- /test/js-api/memory/buffer.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/memory/buffer.any.js -------------------------------------------------------------------------------- /test/js-api/memory/constructor.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/memory/constructor.any.js -------------------------------------------------------------------------------- /test/js-api/memory/grow.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/memory/grow.any.js -------------------------------------------------------------------------------- /test/js-api/memory/toString.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/memory/toString.any.js -------------------------------------------------------------------------------- /test/js-api/module/constructor.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/module/constructor.any.js -------------------------------------------------------------------------------- /test/js-api/module/customSections.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/module/customSections.any.js -------------------------------------------------------------------------------- /test/js-api/module/exports.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/module/exports.any.js -------------------------------------------------------------------------------- /test/js-api/module/imports.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/module/imports.any.js -------------------------------------------------------------------------------- /test/js-api/module/toString.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/module/toString.any.js -------------------------------------------------------------------------------- /test/js-api/prototypes.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/prototypes.any.js -------------------------------------------------------------------------------- /test/js-api/table/assertions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/table/assertions.js -------------------------------------------------------------------------------- /test/js-api/table/constructor.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/table/constructor.any.js -------------------------------------------------------------------------------- /test/js-api/table/get-set.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/table/get-set.any.js -------------------------------------------------------------------------------- /test/js-api/table/grow.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/table/grow.any.js -------------------------------------------------------------------------------- /test/js-api/table/length.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/table/length.any.js -------------------------------------------------------------------------------- /test/js-api/table/toString.any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/table/toString.any.js -------------------------------------------------------------------------------- /test/js-api/wasm-module-builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/js-api/wasm-module-builder.js -------------------------------------------------------------------------------- /test/meta/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/meta/Makefile -------------------------------------------------------------------------------- /test/meta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/meta/README.md -------------------------------------------------------------------------------- /test/meta/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/meta/common.js -------------------------------------------------------------------------------- /test/meta/generate_memory_copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/meta/generate_memory_copy.js -------------------------------------------------------------------------------- /test/meta/generate_memory_fill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/meta/generate_memory_fill.js -------------------------------------------------------------------------------- /test/meta/generate_memory_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/meta/generate_memory_init.js -------------------------------------------------------------------------------- /test/meta/generate_table_copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/meta/generate_table_copy.js -------------------------------------------------------------------------------- /test/meta/generate_table_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/meta/generate_table_init.js -------------------------------------------------------------------------------- /test/meta/noderun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/meta/noderun.sh -------------------------------------------------------------------------------- /test/sync-js-api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/test/sync-js-api.py -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebAssembly/proposal-type-imports/HEAD/w3c.json --------------------------------------------------------------------------------