├── .c8rc.json ├── .clang-format ├── .clang-tidy ├── .devcontainer ├── .dockerignore ├── Dockerfile ├── devcontainer.json └── docker-compose.yml ├── .dockerignore ├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ ├── benchmark.yml │ ├── build_llvm_libraries.yml │ ├── libdyntype_ci.yaml │ ├── ts2wasm_aot.yml │ ├── ts2wasm_ci.yaml │ ├── ts2wasm_macos.yml │ └── ts2wasm_windows.yml ├── .gitignore ├── .mocharc.json ├── .prettierignore ├── .prettierrc.json ├── ATTRIBUTIONS.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cli ├── options.json └── ts2wasm.ts ├── config ├── config_mgr.ts └── log4js.ts ├── doc ├── additonal_sematic_check.md ├── architecture.md ├── dev_environment.md ├── developer-guide │ ├── any_object.md │ ├── basic_concepts.md │ ├── class.md │ ├── expose_host_API.md │ ├── fallback.md │ ├── feature_list.md │ ├── function.md │ ├── generic.md │ ├── img │ │ ├── any_involved_operation.excalidraw.png │ │ ├── generic_class_specialization.png │ │ ├── generic_function_specialization.png │ │ ├── scope_tree.png │ │ ├── specialized_statement_gen.png │ │ ├── statement_scan.png │ │ ├── type_category.excalidraw.png │ │ └── type_scan.png │ ├── import_export.md │ ├── index.md │ ├── interface.md │ └── wasmType_usage.md ├── environment_variables.md ├── faq.md ├── getting_started.md ├── img │ ├── architecture.excalidraw.png │ ├── libdyntype_any_object.excalidraw.png │ ├── libdyntype_type_category.excalidraw.png │ └── validation_strategy.excalidraw.png ├── libdyntype_api_spec.md ├── libstruct_indirect_api_spec.md ├── standard-library │ ├── array.md │ ├── console.md │ ├── index.md │ ├── math.md │ └── string.md └── validation_strategy.md ├── example └── app-framework │ ├── CMakeLists.txt │ ├── app │ ├── connection.ts │ ├── request_handler.ts │ ├── request_sender.ts │ └── timer.ts │ ├── build.sh │ ├── lib │ ├── attr_container.ts │ ├── connection.ts │ ├── request.ts │ ├── timer.ts │ └── utils.ts │ ├── profiles │ ├── host-aot │ │ └── wamr_config_wasmnizer_ts.cmake │ └── host-interp │ │ └── wamr_config_wasmnizer_ts.cmake │ └── src │ ├── iwasm_main.c │ └── main.c ├── lib └── builtin │ ├── builtin_name.ts │ ├── lib.type.d.ts │ └── lib_builtin.ts ├── package.json ├── runtime-library ├── CMakeLists.txt ├── LICENSE ├── README.md ├── build.sh ├── deps │ ├── .gitignore │ └── download.sh ├── libdyntype │ ├── CMakeLists.txt │ ├── README.md │ ├── dynamic-qjs │ │ ├── context.c │ │ ├── fallback.c │ │ ├── object.c │ │ ├── pure_dynamic.h │ │ └── type.h │ ├── dynamic-simple │ │ ├── README.md │ │ ├── context.c │ │ ├── dyn-value │ │ │ ├── README.md │ │ │ ├── class │ │ │ │ ├── date.c │ │ │ │ ├── dyn_class.c │ │ │ │ ├── dyn_class.h │ │ │ │ ├── object.c │ │ │ │ └── string.c │ │ │ ├── dyn_value.c │ │ │ ├── dyn_value.excalidraw.png │ │ │ └── dyn_value.h │ │ ├── fallback.c │ │ ├── object.c │ │ └── pure_dynamic.h │ ├── extref │ │ ├── extref.c │ │ └── extref.h │ ├── lib_dyntype_wrapper.c │ ├── libdyntype.c │ ├── libdyntype.cmake │ ├── libdyntype.h │ ├── libdyntype_export.h │ └── test │ │ ├── CMakeLists.txt │ │ ├── dump.cc │ │ ├── object_property_test.cc │ │ ├── operator_test.cc │ │ ├── prototype_test.cc │ │ ├── test_app.h │ │ └── types_test.cc ├── main.c ├── stdlib │ ├── lib_array.c │ ├── lib_console.c │ └── lib_timer.c ├── stringref │ ├── README.md │ ├── stringref_qjs.c │ └── stringref_simple.c ├── struct-indirect │ ├── lib_struct_indirect.c │ └── lib_struct_indirect.h ├── utils │ ├── object_utils.c │ ├── object_utils.h │ ├── type_utils.c │ ├── type_utils.h │ ├── wamr_utils.c │ └── wamr_utils.h └── wamr_config.cmake ├── scripts ├── LICENSE.txt ├── copy_lib_files.js ├── gdb │ ├── .gitignore │ ├── constants.py │ ├── utils.py │ ├── wamr_dbg.py │ ├── wamr_exec_env.py │ ├── wamr_objects.py │ └── wamr_types.py ├── hooks │ └── pre-commit └── link_hooks.js ├── security.md ├── src ├── backend │ ├── README.md │ ├── binaryen │ │ ├── glue │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── binaryen.d.ts │ │ │ ├── binaryen.js │ │ │ ├── packType.ts │ │ │ ├── transform.ts │ │ │ └── utils.ts │ │ ├── index.ts │ │ ├── lib │ │ │ ├── array_utils.ts │ │ │ ├── dyntype │ │ │ │ └── utils.ts │ │ │ ├── env_init.ts │ │ │ ├── init_builtin_api.ts │ │ │ └── interface │ │ │ │ ├── meta.c │ │ │ │ └── meta.wat │ │ ├── memory.ts │ │ ├── utils.ts │ │ ├── wasm_expr_gen.ts │ │ ├── wasm_stmt_gen.ts │ │ └── wasm_type_gen.ts │ └── index.ts ├── dump_ast.ts ├── error.ts ├── expression.ts ├── frontend.ts ├── import_resolve.ts ├── log.ts ├── scope.ts ├── semantic_check.ts ├── semantics │ ├── builder_context.ts │ ├── builtin.ts │ ├── dump.ts │ ├── expression_builder.ts │ ├── flatten.ts │ ├── index.ts │ ├── internal.ts │ ├── ir │ │ ├── data_pool.ts │ │ ├── function.ts │ │ ├── ir_context.ts │ │ ├── ircode.ts │ │ └── irmodule.ts │ ├── predefined_types.ts │ ├── runtime.ts │ ├── semantics_nodes.ts │ ├── statement_builder.ts │ ├── type_creator.ts │ ├── value.ts │ └── value_types.ts ├── statement.ts ├── type.ts ├── utils.ts └── variable.ts ├── tests ├── benchmark │ ├── README.md │ ├── any_basic_type_access.js │ ├── any_basic_type_access.ts │ ├── any_complex_type_access.js │ ├── any_complex_type_access.ts │ ├── array_access.js │ ├── array_access.ts │ ├── array_access_i32.js │ ├── array_access_i32.ts │ ├── binarytrees_class.js │ ├── binarytrees_class.ts │ ├── binarytrees_interface.js │ ├── binarytrees_interface.ts │ ├── class_access.js │ ├── class_access.ts │ ├── class_allocation.js │ ├── class_allocation.ts │ ├── compile_benchmark.js │ ├── fibonacci.js │ ├── fibonacci.ts │ ├── interface_access_field_fastpath.js │ ├── interface_access_field_fastpath.ts │ ├── interface_access_field_slowpath.js │ ├── interface_access_field_slowpath.ts │ ├── interface_access_method_fastpath.js │ ├── interface_access_method_fastpath.ts │ ├── interface_access_method_slowpath.js │ ├── interface_access_method_slowpath.ts │ ├── mandelbrot.js │ ├── mandelbrot.ts │ ├── mandelbrot_i32.js │ ├── mandelbrot_i32.ts │ ├── merkletrees.js │ ├── merkletrees.ts │ ├── nbody_class.js │ ├── nbody_class.ts │ ├── nbody_interface.js │ ├── nbody_interface.ts │ ├── quicksort.js │ ├── quicksort.ts │ ├── quicksort_float.js │ ├── quicksort_float.ts │ ├── run.sh │ ├── run_benchmark.js │ ├── run_benchmark_on_chrome.html │ ├── run_benchmark_on_chrome.js │ ├── spectral_norm.js │ ├── spectral_norm.ts │ ├── spectral_norm_i32.js │ └── spectral_norm_i32.ts ├── samples │ ├── add_shorthand_prop.ts │ ├── any_as_string.ts │ ├── any_binary_operation.ts │ ├── any_box_any.ts │ ├── any_box_array.ts │ ├── any_box_boolean.ts │ ├── any_box_interface.ts │ ├── any_box_null.ts │ ├── any_box_number.ts │ ├── any_box_obj.ts │ ├── any_box_obj_as_return_value.ts │ ├── any_box_string.ts │ ├── any_box_undefind.ts │ ├── any_cast_class.ts │ ├── any_func_call.ts │ ├── any_nested_literal_value.ts │ ├── any_obj_prop_get.ts │ ├── any_obj_prop_get_as_string.ts │ ├── any_obj_prop_set.ts │ ├── any_operate_with_static.ts │ ├── array_concat.ts │ ├── array_contain_closure.ts │ ├── array_contain_func.ts │ ├── array_copyWithin.ts │ ├── array_elem_get.ts │ ├── array_elem_set.ts │ ├── array_every.ts │ ├── array_fill.ts │ ├── array_filter.ts │ ├── array_find.ts │ ├── array_findIndex.ts │ ├── array_foreach.ts │ ├── array_includes.ts │ ├── array_indexOf.ts │ ├── array_join.ts │ ├── array_lastIndexOf.ts │ ├── array_map.ts │ ├── array_nested_array.ts │ ├── array_nested_literal.ts │ ├── array_nested_literal_array.ts │ ├── array_new_array.ts │ ├── array_new_array_number.ts │ ├── array_new_array_string.ts │ ├── array_new_literal_any.ts │ ├── array_new_literal_boolean.ts │ ├── array_new_literal_number.ts │ ├── array_new_literal_string.ts │ ├── array_pop.ts │ ├── array_push.ts │ ├── array_reduce.ts │ ├── array_reduceRight.ts │ ├── array_reverse.ts │ ├── array_shift.ts │ ├── array_slice.ts │ ├── array_some.ts │ ├── array_sort.ts │ ├── array_specialization.ts │ ├── array_splice.ts │ ├── array_unshift.ts │ ├── array_wasm_basic_type.ts │ ├── arraybuffer_basic.ts │ ├── assign_different_type.ts │ ├── auto_box_unbox.ts │ ├── base_function_call.ts │ ├── block_closure.ts │ ├── block_inner_block.ts │ ├── boolean_basic.ts │ ├── boolean_logic_operator.ts │ ├── boolean_not.ts │ ├── builtin_array.ts │ ├── builtin_console.ts │ ├── builtin_math.ts │ ├── builtin_string.ts │ ├── call_expression_function_hoisting.ts │ ├── call_expression_get_value.ts │ ├── call_expression_param.ts │ ├── cast_any_to_static.ts │ ├── class_accessor.ts │ ├── class_basic.ts │ ├── class_direct_call.ts │ ├── class_extend.ts │ ├── class_field_assign.ts │ ├── class_field_is_array.ts │ ├── class_static_prop.ts │ ├── class_type.ts │ ├── class_vtable_accessor.ts │ ├── class_vtable_call.ts │ ├── closure_basic.ts │ ├── closure_first_class_func.ts │ ├── closure_inner_func.ts │ ├── closure_set_ctx_value.ts │ ├── comments_not_entry.ts │ ├── comments_with_export.ts │ ├── comments_with_import.ts │ ├── complexType_case1.ts │ ├── complexType_case2.ts │ ├── complexType_case3.ts │ ├── complexType_case4.ts │ ├── complexType_case5.ts │ ├── compound_assignment_operator.ts │ ├── dataview_basic.ts │ ├── decimalization.ts │ ├── declare_class.ts │ ├── declare_func.ts │ ├── declare_namespace.ts │ ├── declare_var.ts │ ├── default_param.ts │ ├── enum.ts │ ├── exception_catch_error.ts │ ├── exception_custom_error.ts │ ├── exception_throw_error.ts │ ├── exception_try_structure.ts │ ├── export_alias_identifier.ts │ ├── export_alias_imported_identifier.ts │ ├── export_class.ts │ ├── export_expression_number_literal.ts │ ├── export_expression_obj_literal.ts │ ├── export_from │ │ ├── classB.ts │ │ └── libA │ │ │ ├── index.ts │ │ │ └── lib │ │ │ └── classA.ts │ ├── export_func.ts │ ├── export_func2.ts │ ├── export_func_invoked.ts │ ├── export_implicit_type.ts │ ├── export_namespace.ts │ ├── export_re_export.ts │ ├── export_type.ts │ ├── export_var.ts │ ├── expression_binary.ts │ ├── expression_binary_select.ts │ ├── expression_condition.ts │ ├── expression_unary.ts │ ├── fallback_quickjs.ts │ ├── fallback_quickjs_Date.ts │ ├── fallback_quickjs_JSON.ts │ ├── for_in.ts │ ├── for_of.ts │ ├── func_cast_interface.ts │ ├── function_declaration.ts │ ├── function_expression.ts │ ├── function_scope_var.ts │ ├── generic_class.ts │ ├── generic_func.ts │ ├── generic_param.ts │ ├── global_generics_function.ts │ ├── global_value.ts │ ├── global_variables.ts │ ├── if_statement_case1.ts │ ├── ignore_parameter_in_variable.ts │ ├── import_alias_identifier.ts │ ├── import_alias_reexport_identifier.ts │ ├── import_alias_scope_identifier.ts │ ├── import_class.ts │ ├── import_expression.ts │ ├── import_func.ts │ ├── import_implicit_type.ts │ ├── import_namespace.ts │ ├── import_type.ts │ ├── import_var.ts │ ├── infc_assign_class.ts │ ├── infc_assign_infc.ts │ ├── infc_assign_obj.ts │ ├── infc_case18.ts │ ├── infc_field_assign.ts │ ├── infc_method.ts │ ├── infc_parameter.ts │ ├── infc_return_value.ts │ ├── infc_with_array.ts │ ├── inner_generics_function.ts │ ├── instanceof.ts │ ├── lib.ts │ ├── loop_do_while.ts │ ├── loop_for.ts │ ├── loop_while.ts │ ├── map_callback.ts │ ├── mixed_type.ts │ ├── module-case │ │ ├── export_declare.ts │ │ ├── export_normal.ts │ │ └── import_case1.ts │ ├── module_start_A.ts │ ├── module_start_B.ts │ ├── module_start_C.ts │ ├── namespace_func.ts │ ├── namespace_generics_function.ts │ ├── namespace_nest.ts │ ├── namespace_var.ts │ ├── nest_generic.ts │ ├── non_null_expression.ts │ ├── null_type_case1.ts │ ├── obj_literal.ts │ ├── obj_method_call.ts │ ├── obj_property_access.ts │ ├── obj_property_dynamic_access.ts │ ├── op_ref_type.ts │ ├── optional_method.ts │ ├── optional_param.ts │ ├── optional_property_access.ts │ ├── parenthesized_expression_case1.ts │ ├── percentToken.ts │ ├── primitiveType.ts │ ├── promise_chain.ts │ ├── promise_constructor.ts │ ├── promise_immediate.ts │ ├── promise_throw.ts │ ├── prototype.ts │ ├── rec_types.ts │ ├── ref_type_cmp.ts │ ├── rest_param_interface.ts │ ├── rest_param_number.ts │ ├── return_statement.ts │ ├── sample_cases.test.ts │ ├── scoped_variables.ts │ ├── shorthand_prop_assign.ts │ ├── spread_operator.ts │ ├── string_binary_operation.ts │ ├── string_or.ts │ ├── string_type.ts │ ├── switch_case_statement.ts │ ├── this_in_closure.ts │ ├── this_in_method.ts │ ├── toString.ts │ ├── top_level_statements.ts │ ├── tuple.ts │ ├── typealias.ts │ ├── typeof.ts │ ├── unary_operator.ts │ ├── undefined_test.ts │ ├── union_assign.ts │ ├── union_field_get.ts │ ├── union_func_call.ts │ ├── unsigned_value.ts │ ├── wasmType_basic.ts │ ├── wasmType_heapType.ts │ └── wasmType_in_otherType.ts ├── unit │ ├── comment.test.ts │ ├── expression.test.ts │ ├── scope.test.ts │ ├── statement.test.ts │ ├── type.test.ts │ └── variable.test.ts └── utils │ └── test_helper.ts ├── tools └── validate │ ├── run_module │ ├── import_object.js │ ├── readme.md │ ├── run_module_on_chrome.html │ ├── run_module_on_chrome.js │ └── run_module_on_node.js │ └── wamr │ ├── .gitignore │ ├── README.md │ ├── create_validation_items.ts │ ├── index.ts │ ├── package.json │ ├── tsconfig.json │ └── validation.json ├── tsconfig.json └── tsconfig.release.json /.c8rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/.c8rc.json -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.devcontainer/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | **/node_modules/ -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/benchmark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/.github/workflows/benchmark.yml -------------------------------------------------------------------------------- /.github/workflows/build_llvm_libraries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/.github/workflows/build_llvm_libraries.yml -------------------------------------------------------------------------------- /.github/workflows/libdyntype_ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/.github/workflows/libdyntype_ci.yaml -------------------------------------------------------------------------------- /.github/workflows/ts2wasm_aot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/.github/workflows/ts2wasm_aot.yml -------------------------------------------------------------------------------- /.github/workflows/ts2wasm_ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/.github/workflows/ts2wasm_ci.yaml -------------------------------------------------------------------------------- /.github/workflows/ts2wasm_macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/.github/workflows/ts2wasm_macos.yml -------------------------------------------------------------------------------- /.github/workflows/ts2wasm_windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/.github/workflows/ts2wasm_windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/.mocharc.json -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /ATTRIBUTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/ATTRIBUTIONS.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/README.md -------------------------------------------------------------------------------- /cli/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/cli/options.json -------------------------------------------------------------------------------- /cli/ts2wasm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/cli/ts2wasm.ts -------------------------------------------------------------------------------- /config/config_mgr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/config/config_mgr.ts -------------------------------------------------------------------------------- /config/log4js.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/config/log4js.ts -------------------------------------------------------------------------------- /doc/additonal_sematic_check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/additonal_sematic_check.md -------------------------------------------------------------------------------- /doc/architecture.md: -------------------------------------------------------------------------------- 1 | ![](./img/architecture.excalidraw.png) -------------------------------------------------------------------------------- /doc/dev_environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/dev_environment.md -------------------------------------------------------------------------------- /doc/developer-guide/any_object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/developer-guide/any_object.md -------------------------------------------------------------------------------- /doc/developer-guide/basic_concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/developer-guide/basic_concepts.md -------------------------------------------------------------------------------- /doc/developer-guide/class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/developer-guide/class.md -------------------------------------------------------------------------------- /doc/developer-guide/expose_host_API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/developer-guide/expose_host_API.md -------------------------------------------------------------------------------- /doc/developer-guide/fallback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/developer-guide/fallback.md -------------------------------------------------------------------------------- /doc/developer-guide/feature_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/developer-guide/feature_list.md -------------------------------------------------------------------------------- /doc/developer-guide/function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/developer-guide/function.md -------------------------------------------------------------------------------- /doc/developer-guide/generic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/developer-guide/generic.md -------------------------------------------------------------------------------- /doc/developer-guide/img/any_involved_operation.excalidraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/developer-guide/img/any_involved_operation.excalidraw.png -------------------------------------------------------------------------------- /doc/developer-guide/img/generic_class_specialization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/developer-guide/img/generic_class_specialization.png -------------------------------------------------------------------------------- /doc/developer-guide/img/generic_function_specialization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/developer-guide/img/generic_function_specialization.png -------------------------------------------------------------------------------- /doc/developer-guide/img/scope_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/developer-guide/img/scope_tree.png -------------------------------------------------------------------------------- /doc/developer-guide/img/specialized_statement_gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/developer-guide/img/specialized_statement_gen.png -------------------------------------------------------------------------------- /doc/developer-guide/img/statement_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/developer-guide/img/statement_scan.png -------------------------------------------------------------------------------- /doc/developer-guide/img/type_category.excalidraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/developer-guide/img/type_category.excalidraw.png -------------------------------------------------------------------------------- /doc/developer-guide/img/type_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/developer-guide/img/type_scan.png -------------------------------------------------------------------------------- /doc/developer-guide/import_export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/developer-guide/import_export.md -------------------------------------------------------------------------------- /doc/developer-guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/developer-guide/index.md -------------------------------------------------------------------------------- /doc/developer-guide/interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/developer-guide/interface.md -------------------------------------------------------------------------------- /doc/developer-guide/wasmType_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/developer-guide/wasmType_usage.md -------------------------------------------------------------------------------- /doc/environment_variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/environment_variables.md -------------------------------------------------------------------------------- /doc/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/faq.md -------------------------------------------------------------------------------- /doc/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/getting_started.md -------------------------------------------------------------------------------- /doc/img/architecture.excalidraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/img/architecture.excalidraw.png -------------------------------------------------------------------------------- /doc/img/libdyntype_any_object.excalidraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/img/libdyntype_any_object.excalidraw.png -------------------------------------------------------------------------------- /doc/img/libdyntype_type_category.excalidraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/img/libdyntype_type_category.excalidraw.png -------------------------------------------------------------------------------- /doc/img/validation_strategy.excalidraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/img/validation_strategy.excalidraw.png -------------------------------------------------------------------------------- /doc/libdyntype_api_spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/libdyntype_api_spec.md -------------------------------------------------------------------------------- /doc/libstruct_indirect_api_spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/libstruct_indirect_api_spec.md -------------------------------------------------------------------------------- /doc/standard-library/array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/standard-library/array.md -------------------------------------------------------------------------------- /doc/standard-library/console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/standard-library/console.md -------------------------------------------------------------------------------- /doc/standard-library/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/standard-library/index.md -------------------------------------------------------------------------------- /doc/standard-library/math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/standard-library/math.md -------------------------------------------------------------------------------- /doc/standard-library/string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/standard-library/string.md -------------------------------------------------------------------------------- /doc/validation_strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/doc/validation_strategy.md -------------------------------------------------------------------------------- /example/app-framework/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/example/app-framework/CMakeLists.txt -------------------------------------------------------------------------------- /example/app-framework/app/connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/example/app-framework/app/connection.ts -------------------------------------------------------------------------------- /example/app-framework/app/request_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/example/app-framework/app/request_handler.ts -------------------------------------------------------------------------------- /example/app-framework/app/request_sender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/example/app-framework/app/request_sender.ts -------------------------------------------------------------------------------- /example/app-framework/app/timer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/example/app-framework/app/timer.ts -------------------------------------------------------------------------------- /example/app-framework/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/example/app-framework/build.sh -------------------------------------------------------------------------------- /example/app-framework/lib/attr_container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/example/app-framework/lib/attr_container.ts -------------------------------------------------------------------------------- /example/app-framework/lib/connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/example/app-framework/lib/connection.ts -------------------------------------------------------------------------------- /example/app-framework/lib/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/example/app-framework/lib/request.ts -------------------------------------------------------------------------------- /example/app-framework/lib/timer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/example/app-framework/lib/timer.ts -------------------------------------------------------------------------------- /example/app-framework/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/example/app-framework/lib/utils.ts -------------------------------------------------------------------------------- /example/app-framework/profiles/host-aot/wamr_config_wasmnizer_ts.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/example/app-framework/profiles/host-aot/wamr_config_wasmnizer_ts.cmake -------------------------------------------------------------------------------- /example/app-framework/profiles/host-interp/wamr_config_wasmnizer_ts.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/example/app-framework/profiles/host-interp/wamr_config_wasmnizer_ts.cmake -------------------------------------------------------------------------------- /example/app-framework/src/iwasm_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/example/app-framework/src/iwasm_main.c -------------------------------------------------------------------------------- /example/app-framework/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/example/app-framework/src/main.c -------------------------------------------------------------------------------- /lib/builtin/builtin_name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/lib/builtin/builtin_name.ts -------------------------------------------------------------------------------- /lib/builtin/lib.type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/lib/builtin/lib.type.d.ts -------------------------------------------------------------------------------- /lib/builtin/lib_builtin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/lib/builtin/lib_builtin.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/package.json -------------------------------------------------------------------------------- /runtime-library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/CMakeLists.txt -------------------------------------------------------------------------------- /runtime-library/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/LICENSE -------------------------------------------------------------------------------- /runtime-library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/README.md -------------------------------------------------------------------------------- /runtime-library/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/build.sh -------------------------------------------------------------------------------- /runtime-library/deps/.gitignore: -------------------------------------------------------------------------------- 1 | quickjs/ 2 | wamr-gc/ 3 | -------------------------------------------------------------------------------- /runtime-library/deps/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/deps/download.sh -------------------------------------------------------------------------------- /runtime-library/libdyntype/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/CMakeLists.txt -------------------------------------------------------------------------------- /runtime-library/libdyntype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/README.md -------------------------------------------------------------------------------- /runtime-library/libdyntype/dynamic-qjs/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/dynamic-qjs/context.c -------------------------------------------------------------------------------- /runtime-library/libdyntype/dynamic-qjs/fallback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/dynamic-qjs/fallback.c -------------------------------------------------------------------------------- /runtime-library/libdyntype/dynamic-qjs/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/dynamic-qjs/object.c -------------------------------------------------------------------------------- /runtime-library/libdyntype/dynamic-qjs/pure_dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/dynamic-qjs/pure_dynamic.h -------------------------------------------------------------------------------- /runtime-library/libdyntype/dynamic-qjs/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/dynamic-qjs/type.h -------------------------------------------------------------------------------- /runtime-library/libdyntype/dynamic-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/dynamic-simple/README.md -------------------------------------------------------------------------------- /runtime-library/libdyntype/dynamic-simple/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/dynamic-simple/context.c -------------------------------------------------------------------------------- /runtime-library/libdyntype/dynamic-simple/dyn-value/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/dynamic-simple/dyn-value/README.md -------------------------------------------------------------------------------- /runtime-library/libdyntype/dynamic-simple/dyn-value/class/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/dynamic-simple/dyn-value/class/date.c -------------------------------------------------------------------------------- /runtime-library/libdyntype/dynamic-simple/dyn-value/class/dyn_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/dynamic-simple/dyn-value/class/dyn_class.c -------------------------------------------------------------------------------- /runtime-library/libdyntype/dynamic-simple/dyn-value/class/dyn_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/dynamic-simple/dyn-value/class/dyn_class.h -------------------------------------------------------------------------------- /runtime-library/libdyntype/dynamic-simple/dyn-value/class/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/dynamic-simple/dyn-value/class/object.c -------------------------------------------------------------------------------- /runtime-library/libdyntype/dynamic-simple/dyn-value/class/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/dynamic-simple/dyn-value/class/string.c -------------------------------------------------------------------------------- /runtime-library/libdyntype/dynamic-simple/dyn-value/dyn_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/dynamic-simple/dyn-value/dyn_value.c -------------------------------------------------------------------------------- /runtime-library/libdyntype/dynamic-simple/dyn-value/dyn_value.excalidraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/dynamic-simple/dyn-value/dyn_value.excalidraw.png -------------------------------------------------------------------------------- /runtime-library/libdyntype/dynamic-simple/dyn-value/dyn_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/dynamic-simple/dyn-value/dyn_value.h -------------------------------------------------------------------------------- /runtime-library/libdyntype/dynamic-simple/fallback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/dynamic-simple/fallback.c -------------------------------------------------------------------------------- /runtime-library/libdyntype/dynamic-simple/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/dynamic-simple/object.c -------------------------------------------------------------------------------- /runtime-library/libdyntype/dynamic-simple/pure_dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/dynamic-simple/pure_dynamic.h -------------------------------------------------------------------------------- /runtime-library/libdyntype/extref/extref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/extref/extref.c -------------------------------------------------------------------------------- /runtime-library/libdyntype/extref/extref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/extref/extref.h -------------------------------------------------------------------------------- /runtime-library/libdyntype/lib_dyntype_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/lib_dyntype_wrapper.c -------------------------------------------------------------------------------- /runtime-library/libdyntype/libdyntype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/libdyntype.c -------------------------------------------------------------------------------- /runtime-library/libdyntype/libdyntype.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/libdyntype.cmake -------------------------------------------------------------------------------- /runtime-library/libdyntype/libdyntype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/libdyntype.h -------------------------------------------------------------------------------- /runtime-library/libdyntype/libdyntype_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/libdyntype_export.h -------------------------------------------------------------------------------- /runtime-library/libdyntype/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/test/CMakeLists.txt -------------------------------------------------------------------------------- /runtime-library/libdyntype/test/dump.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/test/dump.cc -------------------------------------------------------------------------------- /runtime-library/libdyntype/test/object_property_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/test/object_property_test.cc -------------------------------------------------------------------------------- /runtime-library/libdyntype/test/operator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/test/operator_test.cc -------------------------------------------------------------------------------- /runtime-library/libdyntype/test/prototype_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/test/prototype_test.cc -------------------------------------------------------------------------------- /runtime-library/libdyntype/test/test_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/test/test_app.h -------------------------------------------------------------------------------- /runtime-library/libdyntype/test/types_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/libdyntype/test/types_test.cc -------------------------------------------------------------------------------- /runtime-library/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/main.c -------------------------------------------------------------------------------- /runtime-library/stdlib/lib_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/stdlib/lib_array.c -------------------------------------------------------------------------------- /runtime-library/stdlib/lib_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/stdlib/lib_console.c -------------------------------------------------------------------------------- /runtime-library/stdlib/lib_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/stdlib/lib_timer.c -------------------------------------------------------------------------------- /runtime-library/stringref/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/stringref/README.md -------------------------------------------------------------------------------- /runtime-library/stringref/stringref_qjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/stringref/stringref_qjs.c -------------------------------------------------------------------------------- /runtime-library/stringref/stringref_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/stringref/stringref_simple.c -------------------------------------------------------------------------------- /runtime-library/struct-indirect/lib_struct_indirect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/struct-indirect/lib_struct_indirect.c -------------------------------------------------------------------------------- /runtime-library/struct-indirect/lib_struct_indirect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/struct-indirect/lib_struct_indirect.h -------------------------------------------------------------------------------- /runtime-library/utils/object_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/utils/object_utils.c -------------------------------------------------------------------------------- /runtime-library/utils/object_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/utils/object_utils.h -------------------------------------------------------------------------------- /runtime-library/utils/type_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/utils/type_utils.c -------------------------------------------------------------------------------- /runtime-library/utils/type_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/utils/type_utils.h -------------------------------------------------------------------------------- /runtime-library/utils/wamr_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/utils/wamr_utils.c -------------------------------------------------------------------------------- /runtime-library/utils/wamr_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/utils/wamr_utils.h -------------------------------------------------------------------------------- /runtime-library/wamr_config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/runtime-library/wamr_config.cmake -------------------------------------------------------------------------------- /scripts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/scripts/LICENSE.txt -------------------------------------------------------------------------------- /scripts/copy_lib_files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/scripts/copy_lib_files.js -------------------------------------------------------------------------------- /scripts/gdb/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ -------------------------------------------------------------------------------- /scripts/gdb/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/scripts/gdb/constants.py -------------------------------------------------------------------------------- /scripts/gdb/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/scripts/gdb/utils.py -------------------------------------------------------------------------------- /scripts/gdb/wamr_dbg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/scripts/gdb/wamr_dbg.py -------------------------------------------------------------------------------- /scripts/gdb/wamr_exec_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/scripts/gdb/wamr_exec_env.py -------------------------------------------------------------------------------- /scripts/gdb/wamr_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/scripts/gdb/wamr_objects.py -------------------------------------------------------------------------------- /scripts/gdb/wamr_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/scripts/gdb/wamr_types.py -------------------------------------------------------------------------------- /scripts/hooks/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged 2 | -------------------------------------------------------------------------------- /scripts/link_hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/scripts/link_hooks.js -------------------------------------------------------------------------------- /security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/security.md -------------------------------------------------------------------------------- /src/backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/backend/README.md -------------------------------------------------------------------------------- /src/backend/binaryen/glue/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/backend/binaryen/glue/LICENSE -------------------------------------------------------------------------------- /src/backend/binaryen/glue/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/backend/binaryen/glue/NOTICE -------------------------------------------------------------------------------- /src/backend/binaryen/glue/binaryen.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/backend/binaryen/glue/binaryen.d.ts -------------------------------------------------------------------------------- /src/backend/binaryen/glue/binaryen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/backend/binaryen/glue/binaryen.js -------------------------------------------------------------------------------- /src/backend/binaryen/glue/packType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/backend/binaryen/glue/packType.ts -------------------------------------------------------------------------------- /src/backend/binaryen/glue/transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/backend/binaryen/glue/transform.ts -------------------------------------------------------------------------------- /src/backend/binaryen/glue/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/backend/binaryen/glue/utils.ts -------------------------------------------------------------------------------- /src/backend/binaryen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/backend/binaryen/index.ts -------------------------------------------------------------------------------- /src/backend/binaryen/lib/array_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/backend/binaryen/lib/array_utils.ts -------------------------------------------------------------------------------- /src/backend/binaryen/lib/dyntype/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/backend/binaryen/lib/dyntype/utils.ts -------------------------------------------------------------------------------- /src/backend/binaryen/lib/env_init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/backend/binaryen/lib/env_init.ts -------------------------------------------------------------------------------- /src/backend/binaryen/lib/init_builtin_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/backend/binaryen/lib/init_builtin_api.ts -------------------------------------------------------------------------------- /src/backend/binaryen/lib/interface/meta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/backend/binaryen/lib/interface/meta.c -------------------------------------------------------------------------------- /src/backend/binaryen/lib/interface/meta.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/backend/binaryen/lib/interface/meta.wat -------------------------------------------------------------------------------- /src/backend/binaryen/memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/backend/binaryen/memory.ts -------------------------------------------------------------------------------- /src/backend/binaryen/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/backend/binaryen/utils.ts -------------------------------------------------------------------------------- /src/backend/binaryen/wasm_expr_gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/backend/binaryen/wasm_expr_gen.ts -------------------------------------------------------------------------------- /src/backend/binaryen/wasm_stmt_gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/backend/binaryen/wasm_stmt_gen.ts -------------------------------------------------------------------------------- /src/backend/binaryen/wasm_type_gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/backend/binaryen/wasm_type_gen.ts -------------------------------------------------------------------------------- /src/backend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/backend/index.ts -------------------------------------------------------------------------------- /src/dump_ast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/dump_ast.ts -------------------------------------------------------------------------------- /src/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/error.ts -------------------------------------------------------------------------------- /src/expression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/expression.ts -------------------------------------------------------------------------------- /src/frontend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/frontend.ts -------------------------------------------------------------------------------- /src/import_resolve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/import_resolve.ts -------------------------------------------------------------------------------- /src/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/log.ts -------------------------------------------------------------------------------- /src/scope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/scope.ts -------------------------------------------------------------------------------- /src/semantic_check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/semantic_check.ts -------------------------------------------------------------------------------- /src/semantics/builder_context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/semantics/builder_context.ts -------------------------------------------------------------------------------- /src/semantics/builtin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/semantics/builtin.ts -------------------------------------------------------------------------------- /src/semantics/dump.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/semantics/dump.ts -------------------------------------------------------------------------------- /src/semantics/expression_builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/semantics/expression_builder.ts -------------------------------------------------------------------------------- /src/semantics/flatten.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/semantics/flatten.ts -------------------------------------------------------------------------------- /src/semantics/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/semantics/index.ts -------------------------------------------------------------------------------- /src/semantics/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/semantics/internal.ts -------------------------------------------------------------------------------- /src/semantics/ir/data_pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/semantics/ir/data_pool.ts -------------------------------------------------------------------------------- /src/semantics/ir/function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/semantics/ir/function.ts -------------------------------------------------------------------------------- /src/semantics/ir/ir_context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/semantics/ir/ir_context.ts -------------------------------------------------------------------------------- /src/semantics/ir/ircode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/semantics/ir/ircode.ts -------------------------------------------------------------------------------- /src/semantics/ir/irmodule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/semantics/ir/irmodule.ts -------------------------------------------------------------------------------- /src/semantics/predefined_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/semantics/predefined_types.ts -------------------------------------------------------------------------------- /src/semantics/runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/semantics/runtime.ts -------------------------------------------------------------------------------- /src/semantics/semantics_nodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/semantics/semantics_nodes.ts -------------------------------------------------------------------------------- /src/semantics/statement_builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/semantics/statement_builder.ts -------------------------------------------------------------------------------- /src/semantics/type_creator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/semantics/type_creator.ts -------------------------------------------------------------------------------- /src/semantics/value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/semantics/value.ts -------------------------------------------------------------------------------- /src/semantics/value_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/semantics/value_types.ts -------------------------------------------------------------------------------- /src/statement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/statement.ts -------------------------------------------------------------------------------- /src/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/type.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/variable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/src/variable.ts -------------------------------------------------------------------------------- /tests/benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/README.md -------------------------------------------------------------------------------- /tests/benchmark/any_basic_type_access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/any_basic_type_access.js -------------------------------------------------------------------------------- /tests/benchmark/any_basic_type_access.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/any_basic_type_access.ts -------------------------------------------------------------------------------- /tests/benchmark/any_complex_type_access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/any_complex_type_access.js -------------------------------------------------------------------------------- /tests/benchmark/any_complex_type_access.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/any_complex_type_access.ts -------------------------------------------------------------------------------- /tests/benchmark/array_access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/array_access.js -------------------------------------------------------------------------------- /tests/benchmark/array_access.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/array_access.ts -------------------------------------------------------------------------------- /tests/benchmark/array_access_i32.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/array_access_i32.js -------------------------------------------------------------------------------- /tests/benchmark/array_access_i32.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/array_access_i32.ts -------------------------------------------------------------------------------- /tests/benchmark/binarytrees_class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/binarytrees_class.js -------------------------------------------------------------------------------- /tests/benchmark/binarytrees_class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/binarytrees_class.ts -------------------------------------------------------------------------------- /tests/benchmark/binarytrees_interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/binarytrees_interface.js -------------------------------------------------------------------------------- /tests/benchmark/binarytrees_interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/binarytrees_interface.ts -------------------------------------------------------------------------------- /tests/benchmark/class_access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/class_access.js -------------------------------------------------------------------------------- /tests/benchmark/class_access.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/class_access.ts -------------------------------------------------------------------------------- /tests/benchmark/class_allocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/class_allocation.js -------------------------------------------------------------------------------- /tests/benchmark/class_allocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/class_allocation.ts -------------------------------------------------------------------------------- /tests/benchmark/compile_benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/compile_benchmark.js -------------------------------------------------------------------------------- /tests/benchmark/fibonacci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/fibonacci.js -------------------------------------------------------------------------------- /tests/benchmark/fibonacci.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/fibonacci.ts -------------------------------------------------------------------------------- /tests/benchmark/interface_access_field_fastpath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/interface_access_field_fastpath.js -------------------------------------------------------------------------------- /tests/benchmark/interface_access_field_fastpath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/interface_access_field_fastpath.ts -------------------------------------------------------------------------------- /tests/benchmark/interface_access_field_slowpath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/interface_access_field_slowpath.js -------------------------------------------------------------------------------- /tests/benchmark/interface_access_field_slowpath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/interface_access_field_slowpath.ts -------------------------------------------------------------------------------- /tests/benchmark/interface_access_method_fastpath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/interface_access_method_fastpath.js -------------------------------------------------------------------------------- /tests/benchmark/interface_access_method_fastpath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/interface_access_method_fastpath.ts -------------------------------------------------------------------------------- /tests/benchmark/interface_access_method_slowpath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/interface_access_method_slowpath.js -------------------------------------------------------------------------------- /tests/benchmark/interface_access_method_slowpath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/interface_access_method_slowpath.ts -------------------------------------------------------------------------------- /tests/benchmark/mandelbrot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/mandelbrot.js -------------------------------------------------------------------------------- /tests/benchmark/mandelbrot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/mandelbrot.ts -------------------------------------------------------------------------------- /tests/benchmark/mandelbrot_i32.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/mandelbrot_i32.js -------------------------------------------------------------------------------- /tests/benchmark/mandelbrot_i32.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/mandelbrot_i32.ts -------------------------------------------------------------------------------- /tests/benchmark/merkletrees.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/merkletrees.js -------------------------------------------------------------------------------- /tests/benchmark/merkletrees.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/merkletrees.ts -------------------------------------------------------------------------------- /tests/benchmark/nbody_class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/nbody_class.js -------------------------------------------------------------------------------- /tests/benchmark/nbody_class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/nbody_class.ts -------------------------------------------------------------------------------- /tests/benchmark/nbody_interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/nbody_interface.js -------------------------------------------------------------------------------- /tests/benchmark/nbody_interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/nbody_interface.ts -------------------------------------------------------------------------------- /tests/benchmark/quicksort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/quicksort.js -------------------------------------------------------------------------------- /tests/benchmark/quicksort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/quicksort.ts -------------------------------------------------------------------------------- /tests/benchmark/quicksort_float.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/quicksort_float.js -------------------------------------------------------------------------------- /tests/benchmark/quicksort_float.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/quicksort_float.ts -------------------------------------------------------------------------------- /tests/benchmark/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/run.sh -------------------------------------------------------------------------------- /tests/benchmark/run_benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/run_benchmark.js -------------------------------------------------------------------------------- /tests/benchmark/run_benchmark_on_chrome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/run_benchmark_on_chrome.html -------------------------------------------------------------------------------- /tests/benchmark/run_benchmark_on_chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/run_benchmark_on_chrome.js -------------------------------------------------------------------------------- /tests/benchmark/spectral_norm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/spectral_norm.js -------------------------------------------------------------------------------- /tests/benchmark/spectral_norm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/spectral_norm.ts -------------------------------------------------------------------------------- /tests/benchmark/spectral_norm_i32.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/spectral_norm_i32.js -------------------------------------------------------------------------------- /tests/benchmark/spectral_norm_i32.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/benchmark/spectral_norm_i32.ts -------------------------------------------------------------------------------- /tests/samples/add_shorthand_prop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/add_shorthand_prop.ts -------------------------------------------------------------------------------- /tests/samples/any_as_string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/any_as_string.ts -------------------------------------------------------------------------------- /tests/samples/any_binary_operation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/any_binary_operation.ts -------------------------------------------------------------------------------- /tests/samples/any_box_any.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/any_box_any.ts -------------------------------------------------------------------------------- /tests/samples/any_box_array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/any_box_array.ts -------------------------------------------------------------------------------- /tests/samples/any_box_boolean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/any_box_boolean.ts -------------------------------------------------------------------------------- /tests/samples/any_box_interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/any_box_interface.ts -------------------------------------------------------------------------------- /tests/samples/any_box_null.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/any_box_null.ts -------------------------------------------------------------------------------- /tests/samples/any_box_number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/any_box_number.ts -------------------------------------------------------------------------------- /tests/samples/any_box_obj.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/any_box_obj.ts -------------------------------------------------------------------------------- /tests/samples/any_box_obj_as_return_value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/any_box_obj_as_return_value.ts -------------------------------------------------------------------------------- /tests/samples/any_box_string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/any_box_string.ts -------------------------------------------------------------------------------- /tests/samples/any_box_undefind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/any_box_undefind.ts -------------------------------------------------------------------------------- /tests/samples/any_cast_class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/any_cast_class.ts -------------------------------------------------------------------------------- /tests/samples/any_func_call.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/any_func_call.ts -------------------------------------------------------------------------------- /tests/samples/any_nested_literal_value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/any_nested_literal_value.ts -------------------------------------------------------------------------------- /tests/samples/any_obj_prop_get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/any_obj_prop_get.ts -------------------------------------------------------------------------------- /tests/samples/any_obj_prop_get_as_string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/any_obj_prop_get_as_string.ts -------------------------------------------------------------------------------- /tests/samples/any_obj_prop_set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/any_obj_prop_set.ts -------------------------------------------------------------------------------- /tests/samples/any_operate_with_static.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/any_operate_with_static.ts -------------------------------------------------------------------------------- /tests/samples/array_concat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_concat.ts -------------------------------------------------------------------------------- /tests/samples/array_contain_closure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_contain_closure.ts -------------------------------------------------------------------------------- /tests/samples/array_contain_func.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_contain_func.ts -------------------------------------------------------------------------------- /tests/samples/array_copyWithin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_copyWithin.ts -------------------------------------------------------------------------------- /tests/samples/array_elem_get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_elem_get.ts -------------------------------------------------------------------------------- /tests/samples/array_elem_set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_elem_set.ts -------------------------------------------------------------------------------- /tests/samples/array_every.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_every.ts -------------------------------------------------------------------------------- /tests/samples/array_fill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_fill.ts -------------------------------------------------------------------------------- /tests/samples/array_filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_filter.ts -------------------------------------------------------------------------------- /tests/samples/array_find.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_find.ts -------------------------------------------------------------------------------- /tests/samples/array_findIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_findIndex.ts -------------------------------------------------------------------------------- /tests/samples/array_foreach.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_foreach.ts -------------------------------------------------------------------------------- /tests/samples/array_includes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_includes.ts -------------------------------------------------------------------------------- /tests/samples/array_indexOf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_indexOf.ts -------------------------------------------------------------------------------- /tests/samples/array_join.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_join.ts -------------------------------------------------------------------------------- /tests/samples/array_lastIndexOf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_lastIndexOf.ts -------------------------------------------------------------------------------- /tests/samples/array_map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_map.ts -------------------------------------------------------------------------------- /tests/samples/array_nested_array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_nested_array.ts -------------------------------------------------------------------------------- /tests/samples/array_nested_literal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_nested_literal.ts -------------------------------------------------------------------------------- /tests/samples/array_nested_literal_array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_nested_literal_array.ts -------------------------------------------------------------------------------- /tests/samples/array_new_array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_new_array.ts -------------------------------------------------------------------------------- /tests/samples/array_new_array_number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_new_array_number.ts -------------------------------------------------------------------------------- /tests/samples/array_new_array_string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_new_array_string.ts -------------------------------------------------------------------------------- /tests/samples/array_new_literal_any.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_new_literal_any.ts -------------------------------------------------------------------------------- /tests/samples/array_new_literal_boolean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_new_literal_boolean.ts -------------------------------------------------------------------------------- /tests/samples/array_new_literal_number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_new_literal_number.ts -------------------------------------------------------------------------------- /tests/samples/array_new_literal_string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_new_literal_string.ts -------------------------------------------------------------------------------- /tests/samples/array_pop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_pop.ts -------------------------------------------------------------------------------- /tests/samples/array_push.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_push.ts -------------------------------------------------------------------------------- /tests/samples/array_reduce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_reduce.ts -------------------------------------------------------------------------------- /tests/samples/array_reduceRight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_reduceRight.ts -------------------------------------------------------------------------------- /tests/samples/array_reverse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_reverse.ts -------------------------------------------------------------------------------- /tests/samples/array_shift.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_shift.ts -------------------------------------------------------------------------------- /tests/samples/array_slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_slice.ts -------------------------------------------------------------------------------- /tests/samples/array_some.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_some.ts -------------------------------------------------------------------------------- /tests/samples/array_sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_sort.ts -------------------------------------------------------------------------------- /tests/samples/array_specialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_specialization.ts -------------------------------------------------------------------------------- /tests/samples/array_splice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_splice.ts -------------------------------------------------------------------------------- /tests/samples/array_unshift.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_unshift.ts -------------------------------------------------------------------------------- /tests/samples/array_wasm_basic_type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/array_wasm_basic_type.ts -------------------------------------------------------------------------------- /tests/samples/arraybuffer_basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/arraybuffer_basic.ts -------------------------------------------------------------------------------- /tests/samples/assign_different_type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/assign_different_type.ts -------------------------------------------------------------------------------- /tests/samples/auto_box_unbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/auto_box_unbox.ts -------------------------------------------------------------------------------- /tests/samples/base_function_call.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/base_function_call.ts -------------------------------------------------------------------------------- /tests/samples/block_closure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/block_closure.ts -------------------------------------------------------------------------------- /tests/samples/block_inner_block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/block_inner_block.ts -------------------------------------------------------------------------------- /tests/samples/boolean_basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/boolean_basic.ts -------------------------------------------------------------------------------- /tests/samples/boolean_logic_operator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/boolean_logic_operator.ts -------------------------------------------------------------------------------- /tests/samples/boolean_not.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/boolean_not.ts -------------------------------------------------------------------------------- /tests/samples/builtin_array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/builtin_array.ts -------------------------------------------------------------------------------- /tests/samples/builtin_console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/builtin_console.ts -------------------------------------------------------------------------------- /tests/samples/builtin_math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/builtin_math.ts -------------------------------------------------------------------------------- /tests/samples/builtin_string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/builtin_string.ts -------------------------------------------------------------------------------- /tests/samples/call_expression_function_hoisting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/call_expression_function_hoisting.ts -------------------------------------------------------------------------------- /tests/samples/call_expression_get_value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/call_expression_get_value.ts -------------------------------------------------------------------------------- /tests/samples/call_expression_param.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/call_expression_param.ts -------------------------------------------------------------------------------- /tests/samples/cast_any_to_static.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/cast_any_to_static.ts -------------------------------------------------------------------------------- /tests/samples/class_accessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/class_accessor.ts -------------------------------------------------------------------------------- /tests/samples/class_basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/class_basic.ts -------------------------------------------------------------------------------- /tests/samples/class_direct_call.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/class_direct_call.ts -------------------------------------------------------------------------------- /tests/samples/class_extend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/class_extend.ts -------------------------------------------------------------------------------- /tests/samples/class_field_assign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/class_field_assign.ts -------------------------------------------------------------------------------- /tests/samples/class_field_is_array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/class_field_is_array.ts -------------------------------------------------------------------------------- /tests/samples/class_static_prop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/class_static_prop.ts -------------------------------------------------------------------------------- /tests/samples/class_type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/class_type.ts -------------------------------------------------------------------------------- /tests/samples/class_vtable_accessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/class_vtable_accessor.ts -------------------------------------------------------------------------------- /tests/samples/class_vtable_call.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/class_vtable_call.ts -------------------------------------------------------------------------------- /tests/samples/closure_basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/closure_basic.ts -------------------------------------------------------------------------------- /tests/samples/closure_first_class_func.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/closure_first_class_func.ts -------------------------------------------------------------------------------- /tests/samples/closure_inner_func.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/closure_inner_func.ts -------------------------------------------------------------------------------- /tests/samples/closure_set_ctx_value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/closure_set_ctx_value.ts -------------------------------------------------------------------------------- /tests/samples/comments_not_entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/comments_not_entry.ts -------------------------------------------------------------------------------- /tests/samples/comments_with_export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/comments_with_export.ts -------------------------------------------------------------------------------- /tests/samples/comments_with_import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/comments_with_import.ts -------------------------------------------------------------------------------- /tests/samples/complexType_case1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/complexType_case1.ts -------------------------------------------------------------------------------- /tests/samples/complexType_case2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/complexType_case2.ts -------------------------------------------------------------------------------- /tests/samples/complexType_case3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/complexType_case3.ts -------------------------------------------------------------------------------- /tests/samples/complexType_case4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/complexType_case4.ts -------------------------------------------------------------------------------- /tests/samples/complexType_case5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/complexType_case5.ts -------------------------------------------------------------------------------- /tests/samples/compound_assignment_operator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/compound_assignment_operator.ts -------------------------------------------------------------------------------- /tests/samples/dataview_basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/dataview_basic.ts -------------------------------------------------------------------------------- /tests/samples/decimalization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/decimalization.ts -------------------------------------------------------------------------------- /tests/samples/declare_class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/declare_class.ts -------------------------------------------------------------------------------- /tests/samples/declare_func.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/declare_func.ts -------------------------------------------------------------------------------- /tests/samples/declare_namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/declare_namespace.ts -------------------------------------------------------------------------------- /tests/samples/declare_var.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/declare_var.ts -------------------------------------------------------------------------------- /tests/samples/default_param.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/default_param.ts -------------------------------------------------------------------------------- /tests/samples/enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/enum.ts -------------------------------------------------------------------------------- /tests/samples/exception_catch_error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/exception_catch_error.ts -------------------------------------------------------------------------------- /tests/samples/exception_custom_error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/exception_custom_error.ts -------------------------------------------------------------------------------- /tests/samples/exception_throw_error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/exception_throw_error.ts -------------------------------------------------------------------------------- /tests/samples/exception_try_structure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/exception_try_structure.ts -------------------------------------------------------------------------------- /tests/samples/export_alias_identifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/export_alias_identifier.ts -------------------------------------------------------------------------------- /tests/samples/export_alias_imported_identifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/export_alias_imported_identifier.ts -------------------------------------------------------------------------------- /tests/samples/export_class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/export_class.ts -------------------------------------------------------------------------------- /tests/samples/export_expression_number_literal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/export_expression_number_literal.ts -------------------------------------------------------------------------------- /tests/samples/export_expression_obj_literal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/export_expression_obj_literal.ts -------------------------------------------------------------------------------- /tests/samples/export_from/classB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/export_from/classB.ts -------------------------------------------------------------------------------- /tests/samples/export_from/libA/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/export_from/libA/index.ts -------------------------------------------------------------------------------- /tests/samples/export_from/libA/lib/classA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/export_from/libA/lib/classA.ts -------------------------------------------------------------------------------- /tests/samples/export_func.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/export_func.ts -------------------------------------------------------------------------------- /tests/samples/export_func2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/export_func2.ts -------------------------------------------------------------------------------- /tests/samples/export_func_invoked.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/export_func_invoked.ts -------------------------------------------------------------------------------- /tests/samples/export_implicit_type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/export_implicit_type.ts -------------------------------------------------------------------------------- /tests/samples/export_namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/export_namespace.ts -------------------------------------------------------------------------------- /tests/samples/export_re_export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/export_re_export.ts -------------------------------------------------------------------------------- /tests/samples/export_type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/export_type.ts -------------------------------------------------------------------------------- /tests/samples/export_var.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/export_var.ts -------------------------------------------------------------------------------- /tests/samples/expression_binary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/expression_binary.ts -------------------------------------------------------------------------------- /tests/samples/expression_binary_select.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/expression_binary_select.ts -------------------------------------------------------------------------------- /tests/samples/expression_condition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/expression_condition.ts -------------------------------------------------------------------------------- /tests/samples/expression_unary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/expression_unary.ts -------------------------------------------------------------------------------- /tests/samples/fallback_quickjs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/fallback_quickjs.ts -------------------------------------------------------------------------------- /tests/samples/fallback_quickjs_Date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/fallback_quickjs_Date.ts -------------------------------------------------------------------------------- /tests/samples/fallback_quickjs_JSON.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/fallback_quickjs_JSON.ts -------------------------------------------------------------------------------- /tests/samples/for_in.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/for_in.ts -------------------------------------------------------------------------------- /tests/samples/for_of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/for_of.ts -------------------------------------------------------------------------------- /tests/samples/func_cast_interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/func_cast_interface.ts -------------------------------------------------------------------------------- /tests/samples/function_declaration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/function_declaration.ts -------------------------------------------------------------------------------- /tests/samples/function_expression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/function_expression.ts -------------------------------------------------------------------------------- /tests/samples/function_scope_var.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/function_scope_var.ts -------------------------------------------------------------------------------- /tests/samples/generic_class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/generic_class.ts -------------------------------------------------------------------------------- /tests/samples/generic_func.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/generic_func.ts -------------------------------------------------------------------------------- /tests/samples/generic_param.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/generic_param.ts -------------------------------------------------------------------------------- /tests/samples/global_generics_function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/global_generics_function.ts -------------------------------------------------------------------------------- /tests/samples/global_value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/global_value.ts -------------------------------------------------------------------------------- /tests/samples/global_variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/global_variables.ts -------------------------------------------------------------------------------- /tests/samples/if_statement_case1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/if_statement_case1.ts -------------------------------------------------------------------------------- /tests/samples/ignore_parameter_in_variable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/ignore_parameter_in_variable.ts -------------------------------------------------------------------------------- /tests/samples/import_alias_identifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/import_alias_identifier.ts -------------------------------------------------------------------------------- /tests/samples/import_alias_reexport_identifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/import_alias_reexport_identifier.ts -------------------------------------------------------------------------------- /tests/samples/import_alias_scope_identifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/import_alias_scope_identifier.ts -------------------------------------------------------------------------------- /tests/samples/import_class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/import_class.ts -------------------------------------------------------------------------------- /tests/samples/import_expression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/import_expression.ts -------------------------------------------------------------------------------- /tests/samples/import_func.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/import_func.ts -------------------------------------------------------------------------------- /tests/samples/import_implicit_type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/import_implicit_type.ts -------------------------------------------------------------------------------- /tests/samples/import_namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/import_namespace.ts -------------------------------------------------------------------------------- /tests/samples/import_type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/import_type.ts -------------------------------------------------------------------------------- /tests/samples/import_var.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/import_var.ts -------------------------------------------------------------------------------- /tests/samples/infc_assign_class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/infc_assign_class.ts -------------------------------------------------------------------------------- /tests/samples/infc_assign_infc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/infc_assign_infc.ts -------------------------------------------------------------------------------- /tests/samples/infc_assign_obj.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/infc_assign_obj.ts -------------------------------------------------------------------------------- /tests/samples/infc_case18.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/infc_case18.ts -------------------------------------------------------------------------------- /tests/samples/infc_field_assign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/infc_field_assign.ts -------------------------------------------------------------------------------- /tests/samples/infc_method.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/infc_method.ts -------------------------------------------------------------------------------- /tests/samples/infc_parameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/infc_parameter.ts -------------------------------------------------------------------------------- /tests/samples/infc_return_value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/infc_return_value.ts -------------------------------------------------------------------------------- /tests/samples/infc_with_array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/infc_with_array.ts -------------------------------------------------------------------------------- /tests/samples/inner_generics_function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/inner_generics_function.ts -------------------------------------------------------------------------------- /tests/samples/instanceof.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/instanceof.ts -------------------------------------------------------------------------------- /tests/samples/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/lib.ts -------------------------------------------------------------------------------- /tests/samples/loop_do_while.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/loop_do_while.ts -------------------------------------------------------------------------------- /tests/samples/loop_for.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/loop_for.ts -------------------------------------------------------------------------------- /tests/samples/loop_while.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/loop_while.ts -------------------------------------------------------------------------------- /tests/samples/map_callback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/map_callback.ts -------------------------------------------------------------------------------- /tests/samples/mixed_type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/mixed_type.ts -------------------------------------------------------------------------------- /tests/samples/module-case/export_declare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/module-case/export_declare.ts -------------------------------------------------------------------------------- /tests/samples/module-case/export_normal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/module-case/export_normal.ts -------------------------------------------------------------------------------- /tests/samples/module-case/import_case1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/module-case/import_case1.ts -------------------------------------------------------------------------------- /tests/samples/module_start_A.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/module_start_A.ts -------------------------------------------------------------------------------- /tests/samples/module_start_B.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/module_start_B.ts -------------------------------------------------------------------------------- /tests/samples/module_start_C.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/module_start_C.ts -------------------------------------------------------------------------------- /tests/samples/namespace_func.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/namespace_func.ts -------------------------------------------------------------------------------- /tests/samples/namespace_generics_function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/namespace_generics_function.ts -------------------------------------------------------------------------------- /tests/samples/namespace_nest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/namespace_nest.ts -------------------------------------------------------------------------------- /tests/samples/namespace_var.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/namespace_var.ts -------------------------------------------------------------------------------- /tests/samples/nest_generic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/nest_generic.ts -------------------------------------------------------------------------------- /tests/samples/non_null_expression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/non_null_expression.ts -------------------------------------------------------------------------------- /tests/samples/null_type_case1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/null_type_case1.ts -------------------------------------------------------------------------------- /tests/samples/obj_literal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/obj_literal.ts -------------------------------------------------------------------------------- /tests/samples/obj_method_call.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/obj_method_call.ts -------------------------------------------------------------------------------- /tests/samples/obj_property_access.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/obj_property_access.ts -------------------------------------------------------------------------------- /tests/samples/obj_property_dynamic_access.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/obj_property_dynamic_access.ts -------------------------------------------------------------------------------- /tests/samples/op_ref_type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/op_ref_type.ts -------------------------------------------------------------------------------- /tests/samples/optional_method.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/optional_method.ts -------------------------------------------------------------------------------- /tests/samples/optional_param.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/optional_param.ts -------------------------------------------------------------------------------- /tests/samples/optional_property_access.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/optional_property_access.ts -------------------------------------------------------------------------------- /tests/samples/parenthesized_expression_case1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/parenthesized_expression_case1.ts -------------------------------------------------------------------------------- /tests/samples/percentToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/percentToken.ts -------------------------------------------------------------------------------- /tests/samples/primitiveType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/primitiveType.ts -------------------------------------------------------------------------------- /tests/samples/promise_chain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/promise_chain.ts -------------------------------------------------------------------------------- /tests/samples/promise_constructor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/promise_constructor.ts -------------------------------------------------------------------------------- /tests/samples/promise_immediate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/promise_immediate.ts -------------------------------------------------------------------------------- /tests/samples/promise_throw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/promise_throw.ts -------------------------------------------------------------------------------- /tests/samples/prototype.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/prototype.ts -------------------------------------------------------------------------------- /tests/samples/rec_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/rec_types.ts -------------------------------------------------------------------------------- /tests/samples/ref_type_cmp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/ref_type_cmp.ts -------------------------------------------------------------------------------- /tests/samples/rest_param_interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/rest_param_interface.ts -------------------------------------------------------------------------------- /tests/samples/rest_param_number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/rest_param_number.ts -------------------------------------------------------------------------------- /tests/samples/return_statement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/return_statement.ts -------------------------------------------------------------------------------- /tests/samples/sample_cases.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/sample_cases.test.ts -------------------------------------------------------------------------------- /tests/samples/scoped_variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/scoped_variables.ts -------------------------------------------------------------------------------- /tests/samples/shorthand_prop_assign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/shorthand_prop_assign.ts -------------------------------------------------------------------------------- /tests/samples/spread_operator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/spread_operator.ts -------------------------------------------------------------------------------- /tests/samples/string_binary_operation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/string_binary_operation.ts -------------------------------------------------------------------------------- /tests/samples/string_or.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/string_or.ts -------------------------------------------------------------------------------- /tests/samples/string_type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/string_type.ts -------------------------------------------------------------------------------- /tests/samples/switch_case_statement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/switch_case_statement.ts -------------------------------------------------------------------------------- /tests/samples/this_in_closure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/this_in_closure.ts -------------------------------------------------------------------------------- /tests/samples/this_in_method.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/this_in_method.ts -------------------------------------------------------------------------------- /tests/samples/toString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/toString.ts -------------------------------------------------------------------------------- /tests/samples/top_level_statements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/top_level_statements.ts -------------------------------------------------------------------------------- /tests/samples/tuple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/tuple.ts -------------------------------------------------------------------------------- /tests/samples/typealias.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/typealias.ts -------------------------------------------------------------------------------- /tests/samples/typeof.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/typeof.ts -------------------------------------------------------------------------------- /tests/samples/unary_operator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/unary_operator.ts -------------------------------------------------------------------------------- /tests/samples/undefined_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/undefined_test.ts -------------------------------------------------------------------------------- /tests/samples/union_assign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/union_assign.ts -------------------------------------------------------------------------------- /tests/samples/union_field_get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/union_field_get.ts -------------------------------------------------------------------------------- /tests/samples/union_func_call.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/union_func_call.ts -------------------------------------------------------------------------------- /tests/samples/unsigned_value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/unsigned_value.ts -------------------------------------------------------------------------------- /tests/samples/wasmType_basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/wasmType_basic.ts -------------------------------------------------------------------------------- /tests/samples/wasmType_heapType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/wasmType_heapType.ts -------------------------------------------------------------------------------- /tests/samples/wasmType_in_otherType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/samples/wasmType_in_otherType.ts -------------------------------------------------------------------------------- /tests/unit/comment.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/unit/comment.test.ts -------------------------------------------------------------------------------- /tests/unit/expression.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/unit/expression.test.ts -------------------------------------------------------------------------------- /tests/unit/scope.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/unit/scope.test.ts -------------------------------------------------------------------------------- /tests/unit/statement.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/unit/statement.test.ts -------------------------------------------------------------------------------- /tests/unit/type.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/unit/type.test.ts -------------------------------------------------------------------------------- /tests/unit/variable.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/unit/variable.test.ts -------------------------------------------------------------------------------- /tests/utils/test_helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tests/utils/test_helper.ts -------------------------------------------------------------------------------- /tools/validate/run_module/import_object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tools/validate/run_module/import_object.js -------------------------------------------------------------------------------- /tools/validate/run_module/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tools/validate/run_module/readme.md -------------------------------------------------------------------------------- /tools/validate/run_module/run_module_on_chrome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tools/validate/run_module/run_module_on_chrome.html -------------------------------------------------------------------------------- /tools/validate/run_module/run_module_on_chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tools/validate/run_module/run_module_on_chrome.js -------------------------------------------------------------------------------- /tools/validate/run_module/run_module_on_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tools/validate/run_module/run_module_on_node.js -------------------------------------------------------------------------------- /tools/validate/wamr/.gitignore: -------------------------------------------------------------------------------- 1 | test.log 2 | wasm_modules/ -------------------------------------------------------------------------------- /tools/validate/wamr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tools/validate/wamr/README.md -------------------------------------------------------------------------------- /tools/validate/wamr/create_validation_items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tools/validate/wamr/create_validation_items.ts -------------------------------------------------------------------------------- /tools/validate/wamr/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tools/validate/wamr/index.ts -------------------------------------------------------------------------------- /tools/validate/wamr/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tools/validate/wamr/package.json -------------------------------------------------------------------------------- /tools/validate/wamr/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tools/validate/wamr/tsconfig.json -------------------------------------------------------------------------------- /tools/validate/wamr/validation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tools/validate/wamr/validation.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-devkits/Wasmnizer-ts/HEAD/tsconfig.release.json --------------------------------------------------------------------------------