├── .clang-format ├── .github ├── ISSUE_TEMPLATE │ ├── others.md │ ├── unity-bug.yml │ └── unreal-bug.yml └── workflows │ ├── build_nuget.yml │ ├── clang-format-check.yml │ ├── cnb_sync.yml │ ├── composites │ ├── unity-build-plugins │ │ ├── android │ │ │ └── action.yml │ │ ├── ios │ │ │ └── action.yml │ │ ├── linux │ │ │ └── action.yml │ │ ├── ohos │ │ │ └── action.yml │ │ ├── osx │ │ │ └── action.yml │ │ ├── wasm │ │ │ └── action.yml │ │ └── windows │ │ │ └── action.yml │ ├── unity-download-backend │ │ └── action.yml │ └── unity-setup │ │ └── action.yml │ ├── run_android_test.sh │ ├── unity_build_plugins.yml │ ├── unity_build_plugins_custom.yml │ ├── unity_openupm_publish.yml │ ├── unity_publish.yml │ ├── unity_unittest.yml │ ├── unreal_ci.yml │ └── unreal_publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── doc ├── faq.md ├── pic │ ├── 1.png │ ├── puerts_conf.png │ ├── puerts_debugger.png │ ├── puerts_gen_dts.png │ ├── puerts_logo.png │ ├── puerts_module_dependencies.png │ ├── select_character.png │ ├── ue_throttle_cpu.png │ └── unity_run_in_background.png ├── unity │ ├── en │ │ ├── bugs.md │ │ ├── faq.md │ │ ├── install.md │ │ ├── knowjs │ │ │ ├── debugging.md │ │ │ ├── module.md │ │ │ ├── typescript.md │ │ │ └── webgl.md │ │ ├── other │ │ │ ├── building.md │ │ │ ├── commercial.md │ │ │ ├── community.md │ │ │ ├── dotnet.md │ │ │ └── upgrade.md │ │ ├── performance │ │ │ ├── il2cpp.md │ │ │ └── index.md │ │ ├── tutorial │ │ │ ├── cs2js.md │ │ │ ├── js2cs.md │ │ │ ├── runJS.md │ │ │ └── wxMinigame.md │ │ └── wrapper │ │ │ ├── all_attribute.md │ │ │ ├── blittablecopy.md │ │ │ ├── extension.md │ │ │ ├── filter.md │ │ │ └── wrapper.md │ └── zhcn │ │ ├── bugs.md │ │ ├── faq.md │ │ ├── install.md │ │ ├── knowjs │ │ ├── debugging.md │ │ ├── module.md │ │ ├── typescript.md │ │ └── webgl.md │ │ ├── other │ │ ├── building.md │ │ ├── commercial.md │ │ ├── community.md │ │ ├── dotnet.md │ │ └── upgrade.md │ │ ├── performance │ │ ├── il2cpp.md │ │ └── index.md │ │ ├── tutorial │ │ ├── cs2js.md │ │ ├── js2cs.md │ │ ├── runJS.md │ │ └── wxMinigame.md │ │ └── wrapper │ │ ├── all_attribute.md │ │ ├── blittablecopy.md │ │ ├── extension.md │ │ ├── filter.md │ │ └── wrapper.md └── unreal │ ├── en │ ├── README.md │ ├── changelog.md │ ├── demos.md │ ├── dev_environment.md │ ├── engine_call_script.md │ ├── faq.md │ ├── getting_started.md │ ├── install.md │ ├── manual.md │ ├── mixin.md │ ├── script_call_uclass.md │ ├── start_a_virtual_machine.md │ ├── template_binding.md │ ├── uclass_extends.md │ └── vscode_debug.md │ └── zhcn │ ├── bugs.md │ ├── changelog.md │ ├── demos.md │ ├── dev_environment.md │ ├── engine_call_script.md │ ├── faq.md │ ├── getting_started.md │ ├── install.md │ ├── manual.md │ ├── mixin.md │ ├── readme.md │ ├── script_call_uclass.md │ ├── start_a_virtual_machine.md │ ├── template_binding.md │ ├── uclass_extends.md │ ├── vscode_debug.md │ └── wasm.md ├── unity ├── .gitignore ├── README.md ├── cli │ ├── backend.mjs │ ├── backends.json │ ├── cmd.mjs │ ├── index.js │ ├── make.mjs │ └── test.mjs ├── native │ ├── EASTL │ │ ├── include │ │ │ ├── EABase │ │ │ │ ├── config │ │ │ │ │ ├── eacompiler.h │ │ │ │ │ ├── eacompilertraits.h │ │ │ │ │ └── eaplatform.h │ │ │ │ ├── eabase.h │ │ │ │ ├── eadeprecated.h │ │ │ │ ├── eahave.h │ │ │ │ ├── earesult.h │ │ │ │ ├── eastdarg.h │ │ │ │ ├── eaunits.h │ │ │ │ ├── int128.h │ │ │ │ ├── nullptr.h │ │ │ │ └── version.h │ │ │ └── EASTL │ │ │ │ ├── algorithm.h │ │ │ │ ├── allocator.h │ │ │ │ ├── allocator_malloc.h │ │ │ │ ├── any.h │ │ │ │ ├── array.h │ │ │ │ ├── atomic.h │ │ │ │ ├── bit.h │ │ │ │ ├── bitset.h │ │ │ │ ├── bitvector.h │ │ │ │ ├── bonus │ │ │ │ ├── adaptors.h │ │ │ │ ├── call_traits.h │ │ │ │ ├── compressed_pair.h │ │ │ │ ├── fixed_ring_buffer.h │ │ │ │ ├── fixed_tuple_vector.h │ │ │ │ ├── intrusive_sdlist.h │ │ │ │ ├── intrusive_slist.h │ │ │ │ ├── list_map.h │ │ │ │ ├── lru_cache.h │ │ │ │ ├── overloaded.h │ │ │ │ ├── ring_buffer.h │ │ │ │ ├── sort_extra.h │ │ │ │ └── tuple_vector.h │ │ │ │ ├── chrono.h │ │ │ │ ├── compare.h │ │ │ │ ├── core_allocator.h │ │ │ │ ├── core_allocator_adapter.h │ │ │ │ ├── deque.h │ │ │ │ ├── finally.h │ │ │ │ ├── fixed_allocator.h │ │ │ │ ├── fixed_function.h │ │ │ │ ├── fixed_hash_map.h │ │ │ │ ├── fixed_hash_set.h │ │ │ │ ├── fixed_list.h │ │ │ │ ├── fixed_map.h │ │ │ │ ├── fixed_set.h │ │ │ │ ├── fixed_slist.h │ │ │ │ ├── fixed_string.h │ │ │ │ ├── fixed_substring.h │ │ │ │ ├── fixed_vector.h │ │ │ │ ├── functional.h │ │ │ │ ├── hash_map.h │ │ │ │ ├── hash_set.h │ │ │ │ ├── heap.h │ │ │ │ ├── initializer_list.h │ │ │ │ ├── internal │ │ │ │ ├── atomic │ │ │ │ │ ├── arch │ │ │ │ │ │ ├── arch.h │ │ │ │ │ │ ├── arch_add_fetch.h │ │ │ │ │ │ ├── arch_and_fetch.h │ │ │ │ │ │ ├── arch_cmpxchg_strong.h │ │ │ │ │ │ ├── arch_cmpxchg_weak.h │ │ │ │ │ │ ├── arch_compiler_barrier.h │ │ │ │ │ │ ├── arch_cpu_pause.h │ │ │ │ │ │ ├── arch_exchange.h │ │ │ │ │ │ ├── arch_fetch_add.h │ │ │ │ │ │ ├── arch_fetch_and.h │ │ │ │ │ │ ├── arch_fetch_or.h │ │ │ │ │ │ ├── arch_fetch_sub.h │ │ │ │ │ │ ├── arch_fetch_xor.h │ │ │ │ │ │ ├── arch_load.h │ │ │ │ │ │ ├── arch_memory_barrier.h │ │ │ │ │ │ ├── arch_or_fetch.h │ │ │ │ │ │ ├── arch_signal_fence.h │ │ │ │ │ │ ├── arch_store.h │ │ │ │ │ │ ├── arch_sub_fetch.h │ │ │ │ │ │ ├── arch_thread_fence.h │ │ │ │ │ │ ├── arch_xor_fetch.h │ │ │ │ │ │ ├── arm │ │ │ │ │ │ │ ├── arch_arm.h │ │ │ │ │ │ │ ├── arch_arm_load.h │ │ │ │ │ │ │ ├── arch_arm_memory_barrier.h │ │ │ │ │ │ │ ├── arch_arm_store.h │ │ │ │ │ │ │ └── arch_arm_thread_fence.h │ │ │ │ │ │ └── x86 │ │ │ │ │ │ │ ├── arch_x86.h │ │ │ │ │ │ │ ├── arch_x86_add_fetch.h │ │ │ │ │ │ │ ├── arch_x86_and_fetch.h │ │ │ │ │ │ │ ├── arch_x86_cmpxchg_strong.h │ │ │ │ │ │ │ ├── arch_x86_cmpxchg_weak.h │ │ │ │ │ │ │ ├── arch_x86_exchange.h │ │ │ │ │ │ │ ├── arch_x86_fetch_add.h │ │ │ │ │ │ │ ├── arch_x86_fetch_and.h │ │ │ │ │ │ │ ├── arch_x86_fetch_or.h │ │ │ │ │ │ │ ├── arch_x86_fetch_sub.h │ │ │ │ │ │ │ ├── arch_x86_fetch_xor.h │ │ │ │ │ │ │ ├── arch_x86_load.h │ │ │ │ │ │ │ ├── arch_x86_memory_barrier.h │ │ │ │ │ │ │ ├── arch_x86_or_fetch.h │ │ │ │ │ │ │ ├── arch_x86_store.h │ │ │ │ │ │ │ ├── arch_x86_sub_fetch.h │ │ │ │ │ │ │ ├── arch_x86_thread_fence.h │ │ │ │ │ │ │ └── arch_x86_xor_fetch.h │ │ │ │ │ ├── atomic.h │ │ │ │ │ ├── atomic_asserts.h │ │ │ │ │ ├── atomic_base_width.h │ │ │ │ │ ├── atomic_casts.h │ │ │ │ │ ├── atomic_flag.h │ │ │ │ │ ├── atomic_flag_standalone.h │ │ │ │ │ ├── atomic_integral.h │ │ │ │ │ ├── atomic_macros.h │ │ │ │ │ ├── atomic_macros │ │ │ │ │ │ ├── atomic_macros.h │ │ │ │ │ │ ├── atomic_macros_add_fetch.h │ │ │ │ │ │ ├── atomic_macros_and_fetch.h │ │ │ │ │ │ ├── atomic_macros_base.h │ │ │ │ │ │ ├── atomic_macros_cmpxchg_strong.h │ │ │ │ │ │ ├── atomic_macros_cmpxchg_weak.h │ │ │ │ │ │ ├── atomic_macros_compiler_barrier.h │ │ │ │ │ │ ├── atomic_macros_cpu_pause.h │ │ │ │ │ │ ├── atomic_macros_exchange.h │ │ │ │ │ │ ├── atomic_macros_fetch_add.h │ │ │ │ │ │ ├── atomic_macros_fetch_and.h │ │ │ │ │ │ ├── atomic_macros_fetch_or.h │ │ │ │ │ │ ├── atomic_macros_fetch_sub.h │ │ │ │ │ │ ├── atomic_macros_fetch_xor.h │ │ │ │ │ │ ├── atomic_macros_load.h │ │ │ │ │ │ ├── atomic_macros_memory_barrier.h │ │ │ │ │ │ ├── atomic_macros_or_fetch.h │ │ │ │ │ │ ├── atomic_macros_signal_fence.h │ │ │ │ │ │ ├── atomic_macros_store.h │ │ │ │ │ │ ├── atomic_macros_sub_fetch.h │ │ │ │ │ │ ├── atomic_macros_thread_fence.h │ │ │ │ │ │ └── atomic_macros_xor_fetch.h │ │ │ │ │ ├── atomic_memory_order.h │ │ │ │ │ ├── atomic_pointer.h │ │ │ │ │ ├── atomic_size_aligned.h │ │ │ │ │ ├── atomic_standalone.h │ │ │ │ │ └── compiler │ │ │ │ │ │ ├── compiler.h │ │ │ │ │ │ ├── compiler_add_fetch.h │ │ │ │ │ │ ├── compiler_and_fetch.h │ │ │ │ │ │ ├── compiler_barrier.h │ │ │ │ │ │ ├── compiler_cmpxchg_strong.h │ │ │ │ │ │ ├── compiler_cmpxchg_weak.h │ │ │ │ │ │ ├── compiler_cpu_pause.h │ │ │ │ │ │ ├── compiler_exchange.h │ │ │ │ │ │ ├── compiler_fetch_add.h │ │ │ │ │ │ ├── compiler_fetch_and.h │ │ │ │ │ │ ├── compiler_fetch_or.h │ │ │ │ │ │ ├── compiler_fetch_sub.h │ │ │ │ │ │ ├── compiler_fetch_xor.h │ │ │ │ │ │ ├── compiler_load.h │ │ │ │ │ │ ├── compiler_memory_barrier.h │ │ │ │ │ │ ├── compiler_or_fetch.h │ │ │ │ │ │ ├── compiler_signal_fence.h │ │ │ │ │ │ ├── compiler_store.h │ │ │ │ │ │ ├── compiler_sub_fetch.h │ │ │ │ │ │ ├── compiler_thread_fence.h │ │ │ │ │ │ ├── compiler_xor_fetch.h │ │ │ │ │ │ ├── gcc │ │ │ │ │ │ ├── compiler_gcc.h │ │ │ │ │ │ ├── compiler_gcc_add_fetch.h │ │ │ │ │ │ ├── compiler_gcc_and_fetch.h │ │ │ │ │ │ ├── compiler_gcc_barrier.h │ │ │ │ │ │ ├── compiler_gcc_cmpxchg_strong.h │ │ │ │ │ │ ├── compiler_gcc_cmpxchg_weak.h │ │ │ │ │ │ ├── compiler_gcc_cpu_pause.h │ │ │ │ │ │ ├── compiler_gcc_exchange.h │ │ │ │ │ │ ├── compiler_gcc_fetch_add.h │ │ │ │ │ │ ├── compiler_gcc_fetch_and.h │ │ │ │ │ │ ├── compiler_gcc_fetch_or.h │ │ │ │ │ │ ├── compiler_gcc_fetch_sub.h │ │ │ │ │ │ ├── compiler_gcc_fetch_xor.h │ │ │ │ │ │ ├── compiler_gcc_load.h │ │ │ │ │ │ ├── compiler_gcc_or_fetch.h │ │ │ │ │ │ ├── compiler_gcc_signal_fence.h │ │ │ │ │ │ ├── compiler_gcc_store.h │ │ │ │ │ │ ├── compiler_gcc_sub_fetch.h │ │ │ │ │ │ ├── compiler_gcc_thread_fence.h │ │ │ │ │ │ └── compiler_gcc_xor_fetch.h │ │ │ │ │ │ └── msvc │ │ │ │ │ │ ├── compiler_msvc.h │ │ │ │ │ │ ├── compiler_msvc_add_fetch.h │ │ │ │ │ │ ├── compiler_msvc_and_fetch.h │ │ │ │ │ │ ├── compiler_msvc_barrier.h │ │ │ │ │ │ ├── compiler_msvc_cmpxchg_strong.h │ │ │ │ │ │ ├── compiler_msvc_cmpxchg_weak.h │ │ │ │ │ │ ├── compiler_msvc_cpu_pause.h │ │ │ │ │ │ ├── compiler_msvc_exchange.h │ │ │ │ │ │ ├── compiler_msvc_fetch_add.h │ │ │ │ │ │ ├── compiler_msvc_fetch_and.h │ │ │ │ │ │ ├── compiler_msvc_fetch_or.h │ │ │ │ │ │ ├── compiler_msvc_fetch_sub.h │ │ │ │ │ │ ├── compiler_msvc_fetch_xor.h │ │ │ │ │ │ ├── compiler_msvc_or_fetch.h │ │ │ │ │ │ ├── compiler_msvc_signal_fence.h │ │ │ │ │ │ ├── compiler_msvc_sub_fetch.h │ │ │ │ │ │ └── compiler_msvc_xor_fetch.h │ │ │ │ ├── char_traits.h │ │ │ │ ├── concepts.h │ │ │ │ ├── config.h │ │ │ │ ├── copy_help.h │ │ │ │ ├── enable_shared.h │ │ │ │ ├── fill_help.h │ │ │ │ ├── fixed_pool.h │ │ │ │ ├── function.h │ │ │ │ ├── function_detail.h │ │ │ │ ├── function_help.h │ │ │ │ ├── functional_base.h │ │ │ │ ├── generic_iterator.h │ │ │ │ ├── hashtable.h │ │ │ │ ├── in_place_t.h │ │ │ │ ├── integer_sequence.h │ │ │ │ ├── intrusive_hashtable.h │ │ │ │ ├── mem_fn.h │ │ │ │ ├── memory_base.h │ │ │ │ ├── move_help.h │ │ │ │ ├── pair_fwd_decls.h │ │ │ │ ├── piecewise_construct_t.h │ │ │ │ ├── red_black_tree.h │ │ │ │ ├── smart_ptr.h │ │ │ │ ├── thread_support.h │ │ │ │ ├── tuple_fwd_decls.h │ │ │ │ ├── type_compound.h │ │ │ │ ├── type_detected.h │ │ │ │ ├── type_fundamental.h │ │ │ │ ├── type_pod.h │ │ │ │ ├── type_properties.h │ │ │ │ ├── type_transformations.h │ │ │ │ └── type_void_t.h │ │ │ │ ├── intrusive_hash_map.h │ │ │ │ ├── intrusive_hash_set.h │ │ │ │ ├── intrusive_list.h │ │ │ │ ├── intrusive_ptr.h │ │ │ │ ├── iterator.h │ │ │ │ ├── linked_array.h │ │ │ │ ├── linked_ptr.h │ │ │ │ ├── list.h │ │ │ │ ├── map.h │ │ │ │ ├── memory.h │ │ │ │ ├── meta.h │ │ │ │ ├── numeric.h │ │ │ │ ├── numeric_limits.h │ │ │ │ ├── optional.h │ │ │ │ ├── priority_queue.h │ │ │ │ ├── queue.h │ │ │ │ ├── random.h │ │ │ │ ├── ratio.h │ │ │ │ ├── safe_ptr.h │ │ │ │ ├── scoped_array.h │ │ │ │ ├── scoped_ptr.h │ │ │ │ ├── segmented_vector.h │ │ │ │ ├── set.h │ │ │ │ ├── shared_array.h │ │ │ │ ├── shared_ptr.h │ │ │ │ ├── slist.h │ │ │ │ ├── sort.h │ │ │ │ ├── span.h │ │ │ │ ├── stack.h │ │ │ │ ├── string.h │ │ │ │ ├── string_hash_map.h │ │ │ │ ├── string_map.h │ │ │ │ ├── string_view.h │ │ │ │ ├── tuple.h │ │ │ │ ├── type_traits.h │ │ │ │ ├── unique_ptr.h │ │ │ │ ├── unordered_map.h │ │ │ │ ├── unordered_set.h │ │ │ │ ├── utility.h │ │ │ │ ├── variant.h │ │ │ │ ├── vector.h │ │ │ │ ├── vector_map.h │ │ │ │ ├── vector_multimap.h │ │ │ │ ├── vector_multiset.h │ │ │ │ ├── vector_set.h │ │ │ │ ├── version.h │ │ │ │ └── weak_ptr.h │ │ └── source │ │ │ ├── allocator_eastl.cpp │ │ │ ├── assert.cpp │ │ │ ├── atomic.cpp │ │ │ ├── fixed_pool.cpp │ │ │ ├── hashtable.cpp │ │ │ ├── intrusive_list.cpp │ │ │ ├── numeric_limits.cpp │ │ │ ├── red_black_tree.cpp │ │ │ ├── string.cpp │ │ │ └── thread_support.cpp │ ├── cmake │ │ ├── android.toolchain.cmake │ │ ├── android.windows.toolchain.cmake │ │ ├── iOS.cmake │ │ └── ios.toolchain.cmake │ ├── papi-lua │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ ├── CppObjectMapperLua.h │ │ │ └── ObjectCacheNodeLua.h │ │ ├── lua-5.4.8 │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── doc │ │ │ │ ├── OSIApproved_100X125.png │ │ │ │ ├── contents.html │ │ │ │ ├── index.css │ │ │ │ ├── logo.gif │ │ │ │ ├── lua.1 │ │ │ │ ├── lua.css │ │ │ │ ├── luac.1 │ │ │ │ ├── manual.css │ │ │ │ ├── manual.html │ │ │ │ └── readme.html │ │ │ └── src │ │ │ │ ├── Makefile │ │ │ │ ├── lapi.c │ │ │ │ ├── lapi.h │ │ │ │ ├── lauxlib.c │ │ │ │ ├── lauxlib.h │ │ │ │ ├── lbaselib.c │ │ │ │ ├── lcode.c │ │ │ │ ├── lcode.h │ │ │ │ ├── lcorolib.c │ │ │ │ ├── lctype.c │ │ │ │ ├── lctype.h │ │ │ │ ├── ldblib.c │ │ │ │ ├── ldebug.c │ │ │ │ ├── ldebug.h │ │ │ │ ├── ldo.c │ │ │ │ ├── ldo.h │ │ │ │ ├── ldump.c │ │ │ │ ├── lfunc.c │ │ │ │ ├── lfunc.h │ │ │ │ ├── lgc.c │ │ │ │ ├── lgc.h │ │ │ │ ├── linit.c │ │ │ │ ├── liolib.c │ │ │ │ ├── ljumptab.h │ │ │ │ ├── llex.c │ │ │ │ ├── llex.h │ │ │ │ ├── llimits.h │ │ │ │ ├── lmathlib.c │ │ │ │ ├── lmem.c │ │ │ │ ├── lmem.h │ │ │ │ ├── loadlib.c │ │ │ │ ├── lobject.c │ │ │ │ ├── lobject.h │ │ │ │ ├── lopcodes.c │ │ │ │ ├── lopcodes.h │ │ │ │ ├── lopnames.h │ │ │ │ ├── loslib.c │ │ │ │ ├── lparser.c │ │ │ │ ├── lparser.h │ │ │ │ ├── lprefix.h │ │ │ │ ├── lstate.c │ │ │ │ ├── lstate.h │ │ │ │ ├── lstring.c │ │ │ │ ├── lstring.h │ │ │ │ ├── lstrlib.c │ │ │ │ ├── ltable.c │ │ │ │ ├── ltable.h │ │ │ │ ├── ltablib.c │ │ │ │ ├── ltm.c │ │ │ │ ├── ltm.h │ │ │ │ ├── lua.c │ │ │ │ ├── lua.h │ │ │ │ ├── lua.hpp │ │ │ │ ├── luac.c │ │ │ │ ├── luaconf.h.in │ │ │ │ ├── lualib.h │ │ │ │ ├── lundump.c │ │ │ │ ├── lundump.h │ │ │ │ ├── lutf8lib.c │ │ │ │ ├── lvm.c │ │ │ │ ├── lvm.h │ │ │ │ ├── lzio.c │ │ │ │ └── lzio.h │ │ ├── make_linux64.sh │ │ ├── make_win64.bat │ │ └── source │ │ │ ├── CppObjectMapperLua.cpp │ │ │ ├── PapiExport.cpp │ │ │ └── PesapiLuaImpl.cpp │ ├── papi-nodejs │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ ├── BackendEnv.h │ │ │ ├── Common.h │ │ │ ├── CommonTypes.h │ │ │ ├── CppObjectMapper.h │ │ │ ├── DataTransfer.h │ │ │ ├── JSEngine.h │ │ │ ├── NamespaceDef.h │ │ │ ├── ObjectCacheNode.h │ │ │ ├── ObjectMapper.h │ │ │ ├── PuertsNamespaceDef.h │ │ │ ├── TypeInfo.hpp │ │ │ └── V8Utils.h │ │ └── source │ │ │ ├── BackendEnv.cpp │ │ │ ├── CppObjectMapper.cpp │ │ │ ├── DataTransfer.cpp │ │ │ ├── JSEngine.cpp │ │ │ ├── PapiExport.cpp │ │ │ └── PesapiV8Impl.cpp │ ├── papi-python │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ ├── CppObjectMapperPython.h │ │ │ ├── ObjectCacheNodePython.h │ │ │ └── PapiData.h │ │ ├── source │ │ │ ├── CppObjectMapperPython.cpp │ │ │ ├── PapiExport.cpp │ │ │ └── PapiPythonImpl.cpp │ │ └── test │ │ │ └── papi_py_base_test.cpp │ ├── papi-quickjs │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ ├── BackendEnv.h │ │ │ ├── CppObjectMapperQuickjs.h │ │ │ ├── ObjectCacheNodeQuickjs.h │ │ │ └── PapiData.h │ │ ├── make_linux64.sh │ │ ├── make_win64.bat │ │ ├── quickjs │ │ │ ├── _VERSION │ │ │ ├── cutils.c │ │ │ ├── cutils.h │ │ │ ├── libbf.c │ │ │ ├── libbf.h │ │ │ ├── libregexp-opcode.h │ │ │ ├── libregexp.c │ │ │ ├── libregexp.h │ │ │ ├── libunicode-table.h │ │ │ ├── libunicode.c │ │ │ ├── libunicode.h │ │ │ ├── list.h │ │ │ ├── quickjs-atom.h │ │ │ ├── quickjs-c-atomics.h │ │ │ ├── quickjs-opcode.h │ │ │ ├── quickjs.c │ │ │ ├── quickjs.h │ │ │ └── unicode_gen_def.h │ │ └── source │ │ │ ├── BackendEnv.cpp │ │ │ ├── CppObjectMapperQuickjs.cpp │ │ │ ├── PapiExport.cpp │ │ │ └── PapiQuickjsImpl.cpp │ ├── papi-v8 │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ ├── BackendEnv.h │ │ │ ├── Common.h │ │ │ ├── CommonTypes.h │ │ │ ├── CppObjectMapper.h │ │ │ ├── DataTransfer.h │ │ │ ├── JSEngine.h │ │ │ ├── NamespaceDef.h │ │ │ ├── ObjectCacheNode.h │ │ │ ├── ObjectMapper.h │ │ │ ├── PuertsNamespaceDef.h │ │ │ ├── TypeInfo.hpp │ │ │ └── V8Utils.h │ │ ├── make_linux64.sh │ │ ├── make_win64.bat │ │ └── source │ │ │ ├── BackendEnv.cpp │ │ │ ├── CppObjectMapper.cpp │ │ │ ├── DataTransfer.cpp │ │ │ ├── JSEngine.cpp │ │ │ ├── PapiExport.cpp │ │ │ └── PesapiV8Impl.cpp │ ├── puerts │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ ├── Log.h │ │ │ ├── NamespaceDef.h │ │ │ ├── PString.h │ │ │ ├── PuertsNamespaceDef.h │ │ │ ├── ScriptClassRegistry.h │ │ │ ├── TypeInfo.hpp │ │ │ └── pesapi.h │ │ ├── make_linux64.sh │ │ └── source │ │ │ ├── Log.cpp │ │ │ ├── PesapiRegister.cpp │ │ │ ├── Puerts.cpp │ │ │ ├── ScriptClassRegistry.cpp │ │ │ └── pesapi_wrap.c │ └── wsppaddon │ │ ├── CMakeLists.txt │ │ └── source │ │ └── WSPPAddon.cpp ├── nuget │ ├── Directory.Build.props │ ├── Directory.Packages.props │ ├── NativeAssets.Common.props │ ├── NugetPackages.sln │ ├── Puerts.Core.NativeAssets.Linux │ │ └── Puerts.Core.NativeAssets.Linux.csproj │ ├── Puerts.Core.NativeAssets.Win32 │ │ └── Puerts.Core.NativeAssets.Win32.csproj │ ├── Puerts.Core.NativeAssets.macOS │ │ └── Puerts.Core.NativeAssets.macOS.csproj │ ├── Puerts.Core │ │ ├── PreserveAttribute.cs │ │ ├── Puerts.Core.csproj │ │ └── build │ │ │ └── package.targets │ ├── Puerts.Lua.NativeAssets.Linux │ │ └── Puerts.Lua.NativeAssets.Linux.csproj │ ├── Puerts.Lua.NativeAssets.Win32 │ │ └── Puerts.Lua.NativeAssets.Win32.csproj │ ├── Puerts.Lua.NativeAssets.macOS │ │ └── Puerts.Lua.NativeAssets.macOS.csproj │ ├── Puerts.Lua │ │ └── Puerts.Lua.csproj │ ├── Puerts.NodeJS.NativeAssets.Linux │ │ └── Puerts.NodeJS.NativeAssets.Linux.csproj │ ├── Puerts.NodeJS.NativeAssets.Win32 │ │ └── Puerts.NodeJS.NativeAssets.Win32.csproj │ ├── Puerts.NodeJS.NativeAssets.macOS │ │ └── Puerts.NodeJS.NativeAssets.macOS.csproj │ ├── Puerts.NodeJS │ │ └── Puerts.NodeJS.csproj │ ├── Puerts.Python.NativeAssets.Linux │ │ └── Puerts.Python.NativeAssets.Linux.csproj │ ├── Puerts.Python.NativeAssets.Win32 │ │ └── Puerts.Python.NativeAssets.Win32.csproj │ ├── Puerts.Python.NativeAssets.macOS │ │ └── Puerts.Python.NativeAssets.macOS.csproj │ ├── Puerts.Python │ │ └── Puerts.Python.csproj │ ├── Puerts.QuickJS.NativeAssets.Linux │ │ └── Puerts.QuickJS.NativeAssets.Linux.csproj │ ├── Puerts.QuickJS.NativeAssets.Win32 │ │ └── Puerts.QuickJS.NativeAssets.Win32.csproj │ ├── Puerts.QuickJS.NativeAssets.macOS │ │ └── Puerts.QuickJS.NativeAssets.macOS.csproj │ ├── Puerts.QuickJS │ │ └── Puerts.QuickJS.csproj │ ├── Puerts.V8.NativeAssets.Linux │ │ └── Puerts.V8.NativeAssets.Linux.csproj │ ├── Puerts.V8.NativeAssets.Win32 │ │ └── Puerts.V8.NativeAssets.Win32.csproj │ ├── Puerts.V8.NativeAssets.macOS │ │ └── Puerts.V8.NativeAssets.macOS.csproj │ ├── Puerts.V8 │ │ └── Puerts.V8.csproj │ ├── README.md │ ├── _MemTest │ │ ├── Program.cs │ │ └── _MemTest.csproj │ ├── build.ps1 │ ├── build.sh │ └── build │ │ ├── Build.csproj │ │ └── Program.cs ├── package-lock.json ├── package.json ├── test │ ├── Src │ │ ├── Cases │ │ │ ├── Javascript │ │ │ │ ├── API │ │ │ │ │ ├── EvalTest.cs │ │ │ │ │ ├── ForofTest.cs │ │ │ │ │ ├── NodeJSTest.cs │ │ │ │ │ ├── TimerTest.cs │ │ │ │ │ └── TypedValueTest.cs │ │ │ │ ├── AccessControlTest.cs │ │ │ │ ├── CSharpModuleTest.cs │ │ │ │ ├── CrossLang │ │ │ │ │ ├── BlittableCopyTest.cs │ │ │ │ │ ├── CrossLangTest.cs │ │ │ │ │ ├── DelegateTest.cs │ │ │ │ │ ├── ExtensionTest.cs │ │ │ │ │ ├── GenericTest.cs │ │ │ │ │ ├── OptionalParametersTest.cs │ │ │ │ │ └── TestScriptEngineImpl.cs │ │ │ │ ├── ExceptionTest.cs │ │ │ │ ├── LazyWeakCJSTest.cs │ │ │ │ ├── MultiTest.cs │ │ │ │ └── WebsocketTest.cs │ │ │ ├── Lua │ │ │ │ ├── API │ │ │ │ │ ├── EvalTest.cs │ │ │ │ │ ├── ForofTest.cs │ │ │ │ │ ├── TimerTest.cs │ │ │ │ │ └── TypedValueTest.cs │ │ │ │ ├── AccessControlTest.cs │ │ │ │ ├── CSharpModuleTest.cs │ │ │ │ ├── CrossLang │ │ │ │ │ ├── BlittableCopyTest.cs │ │ │ │ │ ├── CrossLangTest.cs │ │ │ │ │ ├── DelegateTest.cs │ │ │ │ │ ├── GenericTest.cs │ │ │ │ │ └── TestScriptEngineImpl.cs │ │ │ │ └── ExceptionTest.cs │ │ │ └── Python │ │ │ │ ├── API │ │ │ │ ├── EvalTest.cs │ │ │ │ ├── ForofTest.cs │ │ │ │ ├── TimerTest.cs │ │ │ │ └── TypedValueTest.cs │ │ │ │ ├── AccessControlTest.cs │ │ │ │ ├── CSharpModuleTest.cs │ │ │ │ ├── CrossLang │ │ │ │ ├── BlittableCopyTest.cs │ │ │ │ ├── CrossLangTest.cs │ │ │ │ ├── DelegateTest.cs │ │ │ │ ├── GenericTest.cs │ │ │ │ └── TestScriptEngineImpl.cs │ │ │ │ ├── ExceptionTest.cs │ │ │ │ ├── NestedTypesTest.cs │ │ │ │ └── NestedTypesTest.cs.meta │ │ ├── Resources │ │ │ ├── CSharpModuleTest │ │ │ │ ├── access_innerclass_test.mjs │ │ │ │ ├── array_extension_test.mjs │ │ │ │ ├── console_log_test.mjs │ │ │ │ ├── empty.mjs │ │ │ │ ├── forof_test.mjs │ │ │ │ └── generic_method_test.mjs │ │ │ ├── a_cjs.cjs │ │ │ ├── a_mjs.mjs │ │ │ ├── bootstrap_test.mjs │ │ │ ├── circular_m1.cjs │ │ │ ├── circular_m2.cjs │ │ │ ├── cjs │ │ │ │ └── whatever.cjs │ │ │ ├── eval-error │ │ │ │ └── whatever.mjs │ │ │ ├── import-circular │ │ │ │ ├── main.mjs │ │ │ │ ├── module1.mjs │ │ │ │ └── module2.mjs │ │ │ ├── import-eval-error │ │ │ │ ├── entry.mjs │ │ │ │ └── whatever.mjs │ │ │ ├── import-not-relative │ │ │ │ ├── lib │ │ │ │ │ └── test.mjs │ │ │ │ ├── main.mjs │ │ │ │ └── module2.mjs │ │ │ ├── import-package │ │ │ │ ├── index.js.txt │ │ │ │ └── lib.js.txt │ │ │ ├── import-relative │ │ │ │ ├── a │ │ │ │ │ └── entry.mjs │ │ │ │ └── b │ │ │ │ │ └── whatever.mjs │ │ │ ├── lazymodule.cjs │ │ │ ├── lazymodule1.cjs │ │ │ ├── lazymodule2.cjs │ │ │ ├── mjs │ │ │ │ └── whatever.mjs │ │ │ └── notfound │ │ │ │ └── entry.mjs │ │ ├── TestFramework │ │ │ └── Src │ │ │ │ └── Attributes.cs │ │ ├── UnitTestEnv.cs │ │ ├── UnitTestLoader.cs │ │ ├── com.tencent.puerts.unittest.asmdef │ │ └── package.json │ ├── dotnet │ │ └── Src │ │ │ ├── Helloworld.cs │ │ │ ├── TxtLoader.cs │ │ │ └── WrapperGenerator │ │ │ ├── PuerRegisterInfo_Gen.cs │ │ │ └── WrapperGenerate.cs │ └── unity │ │ ├── Assets │ │ ├── Editor │ │ │ ├── PuerCfg.cs │ │ │ ├── PuerCfg.cs.meta │ │ │ ├── TestBuilder.cs │ │ │ └── TestBuilder.cs.meta │ │ ├── Resources │ │ │ └── BillingMode.json │ │ ├── Scenes │ │ │ ├── HelloWorld.unity │ │ │ ├── HelloWorld.unity.meta │ │ │ ├── Test.unity │ │ │ └── Test.unity.meta │ │ ├── Scripts │ │ │ ├── HelloWorlder.cs │ │ │ ├── HelloWorlder.cs.meta │ │ │ ├── Tester.cs │ │ │ └── Tester.cs.meta │ │ └── link.xml │ │ ├── Packages │ │ ├── manifest.json │ │ └── packages-lock.json │ │ └── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── AutoStreamingSettings.asset │ │ ├── ClusterInputManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── MemorySettings.asset │ │ ├── NavMeshAreas.asset │ │ ├── PackageManagerSettings.asset │ │ ├── Physics2DSettings.asset │ │ ├── PresetManager.asset │ │ ├── ProjectSettings.asset │ │ ├── ProjectVersion.txt │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ ├── TimeManager.asset │ │ ├── UnityConnectSettings.asset │ │ ├── VFXManager.asset │ │ ├── VersionControlSettings.asset │ │ └── boot.config ├── tsconfig.json ├── upms │ ├── commonjs │ │ ├── Runtime.meta │ │ ├── Runtime │ │ │ ├── CommonJS.cs │ │ │ ├── CommonJS.cs.meta │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ │ ├── puer-commonjs.meta │ │ │ │ └── puer-commonjs │ │ │ │ │ ├── load.mjs │ │ │ │ │ ├── load.mjs.meta │ │ │ │ │ ├── modular.mjs │ │ │ │ │ └── modular.mjs.meta │ │ │ ├── com.tencent.puerts.commonjs.asmdef │ │ │ └── com.tencent.puerts.commonjs.asmdef.meta │ │ ├── Samples~ │ │ │ ├── Example.cs │ │ │ ├── Example.unity │ │ │ └── Resources │ │ │ │ ├── main.js.txt │ │ │ │ └── module1.js.txt │ │ ├── Typing.meta │ │ ├── Typing │ │ │ ├── index.d.ts │ │ │ └── index.d.ts.meta │ │ ├── package.json │ │ ├── package.json.meta │ │ ├── readme.md │ │ └── readme.md.meta │ ├── core │ │ ├── Editor │ │ │ ├── Resources │ │ │ │ └── puerts │ │ │ │ │ ├── templates │ │ │ │ │ ├── dts.tpl.mjs │ │ │ │ │ ├── extension_methods_gen.tpl.mjs │ │ │ │ │ ├── il2cpp_snippets.mjs │ │ │ │ │ ├── il2cppbridge.tpl.mjs │ │ │ │ │ ├── il2cppfieldwrapper.tpl.mjs │ │ │ │ │ ├── il2cppvaluetype.tpl.mjs │ │ │ │ │ ├── il2cppwrapper.tpl.mjs │ │ │ │ │ ├── il2cppwrapperdef.tpl.mjs │ │ │ │ │ ├── linkxmlgen.tpl.mjs │ │ │ │ │ ├── registerinfo.tpl.mjs │ │ │ │ │ ├── tte.mjs │ │ │ │ │ └── wrapper.tpl.mjs │ │ │ │ │ └── xil2cpp │ │ │ │ │ ├── Puerts_il2cpp.cpp.txt │ │ │ │ │ ├── TDataTrans.h.txt │ │ │ │ │ ├── pesapi.h.txt │ │ │ │ │ ├── pesapi_webgl.cpp.txt │ │ │ │ │ ├── pesapi_webgl.h.txt │ │ │ │ │ └── unityenv_for_puerts.h.tpl.mjs │ │ │ ├── Src │ │ │ │ ├── CJSImporter.cs │ │ │ │ ├── Configure.cs │ │ │ │ ├── DocResolver.cs │ │ │ │ ├── Generator │ │ │ │ │ ├── DTS.cs │ │ │ │ │ ├── FAQHelper.cs │ │ │ │ │ ├── FileExporter.cs │ │ │ │ │ ├── IL2Cpp │ │ │ │ │ │ ├── FileExporter.cs │ │ │ │ │ │ ├── InstructionsFilter.cs │ │ │ │ │ │ ├── Mono.Reflection.dll │ │ │ │ │ │ ├── Mono.Reflection.pdb │ │ │ │ │ │ └── UnityMenu.cs │ │ │ │ │ ├── RegisterInfo.cs │ │ │ │ │ ├── UnityMenu.cs │ │ │ │ │ ├── Utils.cs │ │ │ │ │ └── Wrapper.cs │ │ │ │ ├── LuaImporter.cs │ │ │ │ ├── MJSImporter.cs │ │ │ │ ├── U2018Compatible.cs │ │ │ │ ├── UnityNodeJS.cs │ │ │ │ └── iOS │ │ │ │ │ └── IOSPreprocessorFix.cs │ │ │ └── com.tencent.puerts.core.Editor.asmdef │ │ ├── Plugins │ │ │ ├── Android │ │ │ │ └── libs │ │ │ │ │ ├── arm64-v8a │ │ │ │ │ ├── libPuertsCore.so.meta │ │ │ │ │ └── libWSPPAddon.so.meta │ │ │ │ │ ├── armeabi-v7a │ │ │ │ │ ├── libPuertsCore.so.meta │ │ │ │ │ └── libWSPPAddon.so.meta │ │ │ │ │ └── x86_64 │ │ │ │ │ ├── libPuertsCore.so.meta │ │ │ │ │ └── libWSPPAddon.so.meta │ │ │ ├── OpenHarmony │ │ │ │ └── libs │ │ │ │ │ ├── arm64-v8a │ │ │ │ │ ├── libPuertsCore.so.meta │ │ │ │ │ └── libWSPPAddon.so.meta │ │ │ │ │ └── armeabi-v7a │ │ │ │ │ ├── libPuertsCore.so.meta │ │ │ │ │ └── libWSPPAddon.so.meta │ │ │ ├── WebGL │ │ │ │ └── libPuertsCore.a.meta │ │ │ ├── iOS │ │ │ │ ├── libPuertsCore.a.meta │ │ │ │ └── libWSPPAddon.a.meta │ │ │ ├── macOS │ │ │ │ ├── PuertsCore.bundle.meta │ │ │ │ └── WSPPAddon.bundle.meta │ │ │ └── x86_64 │ │ │ │ ├── PuertsCore.dll.meta │ │ │ │ ├── WSPPAddon.dll.meta │ │ │ │ ├── libPuertsCore.so.meta │ │ │ │ └── libWSPPAddon.so.meta │ │ ├── Runtime │ │ │ ├── Resources │ │ │ │ └── puerts │ │ │ │ │ ├── csharp.mjs │ │ │ │ │ ├── dispose.mjs │ │ │ │ │ ├── esm_bootstrap.cjs │ │ │ │ │ ├── events.mjs │ │ │ │ │ ├── init.mjs │ │ │ │ │ ├── init_il2cpp.mjs │ │ │ │ │ ├── log.mjs │ │ │ │ │ ├── module.mjs │ │ │ │ │ ├── nodepatch.mjs │ │ │ │ │ ├── polyfill.mjs │ │ │ │ │ ├── promises.mjs │ │ │ │ │ ├── timer.mjs │ │ │ │ │ └── websocketpp.mjs │ │ │ ├── Src │ │ │ │ ├── ArrayBuffer.cs │ │ │ │ ├── Backend.cs │ │ │ │ ├── Backends │ │ │ │ │ └── BackendJs.cs │ │ │ │ ├── IL2Cpp │ │ │ │ │ ├── ArrayExtension.cs │ │ │ │ │ ├── ExtensionMethodInfos_Gen_Internal.cs │ │ │ │ │ ├── JSType │ │ │ │ │ │ └── ScriptObject.cs │ │ │ │ │ ├── Native │ │ │ │ │ │ └── NativeAPI.cs │ │ │ │ │ ├── ObjectPool.cs │ │ │ │ │ ├── ScriptEnv.cs │ │ │ │ │ ├── TypeRegister.cs │ │ │ │ │ └── TypeUtils.cs │ │ │ │ ├── JsEnv.cs │ │ │ │ ├── Loader.cs │ │ │ │ ├── Native │ │ │ │ │ ├── PuertsNative.cs │ │ │ │ │ └── WSPPAddonNative.cs │ │ │ │ ├── PInvoke │ │ │ │ │ ├── JSType │ │ │ │ │ │ └── ScriptObject.cs │ │ │ │ │ ├── Native │ │ │ │ │ │ └── PuertsDLL.cs │ │ │ │ │ ├── ObjectPool.cs │ │ │ │ │ ├── ScriptEnv.cs │ │ │ │ │ ├── TypeRegister.cs │ │ │ │ │ └── Wrapper │ │ │ │ │ │ └── ExpressionsWrap.cs │ │ │ │ ├── PathHelper.cs │ │ │ │ ├── RegisterInfoManager.cs │ │ │ │ ├── TypeExtensions.cs │ │ │ │ ├── TypedValue.cs │ │ │ │ └── Utils.cs │ │ │ └── com.tencent.puerts.core.asmdef │ │ ├── Typing │ │ │ └── puerts │ │ │ │ └── index.d.ts │ │ ├── changelog-hans.md │ │ ├── changelog.md │ │ └── package.json │ ├── lua │ │ ├── Plugins │ │ │ ├── Android │ │ │ │ └── libs │ │ │ │ │ ├── arm64-v8a │ │ │ │ │ └── libPapiLua.so.meta │ │ │ │ │ ├── armeabi-v7a │ │ │ │ │ └── libPapiLua.so.meta │ │ │ │ │ └── x86_64 │ │ │ │ │ └── libPapiLua.so.meta │ │ │ ├── OpenHarmony │ │ │ │ └── libs │ │ │ │ │ ├── arm64-v8a │ │ │ │ │ └── libPapiLua.so.meta │ │ │ │ │ └── armeabi-v7a │ │ │ │ │ └── libPapiLua.so.meta │ │ │ ├── WebGL │ │ │ │ └── libPapiLua.a.meta │ │ │ ├── iOS │ │ │ │ └── libPapiLua.a.meta │ │ │ ├── macOS │ │ │ │ └── PapiLua.bundle.meta │ │ │ └── x86_64 │ │ │ │ ├── PapiLua.dll.meta │ │ │ │ └── libPapiLua.so.meta │ │ ├── Runtime │ │ │ ├── Src │ │ │ │ ├── Backends │ │ │ │ │ └── BackendLua.cs │ │ │ │ ├── Loaders │ │ │ │ │ └── LuaLoader.cs │ │ │ │ └── Native │ │ │ │ │ └── PapiLuaNative.cs │ │ │ └── com.tencent.puerts.lua.asmdef │ │ └── package.json │ ├── nodejs │ │ ├── Plugins │ │ │ ├── Android │ │ │ │ └── libs │ │ │ │ │ ├── arm64-v8a │ │ │ │ │ └── libPapiNodejs.so.meta │ │ │ │ │ └── armeabi-v7a │ │ │ │ │ └── libPapiNodejs.so.meta │ │ │ ├── iOS │ │ │ │ ├── libPapiNodejs.a.meta │ │ │ │ ├── libbrotli.a.meta │ │ │ │ ├── libcares.a.meta │ │ │ │ ├── libhistogram.a.meta │ │ │ │ ├── libllhttp.a.meta │ │ │ │ ├── libnghttp2.a.meta │ │ │ │ ├── libnode.a.meta │ │ │ │ ├── libnode_stub.a.meta │ │ │ │ ├── libopenssl.a.meta │ │ │ │ ├── libuv.a.meta │ │ │ │ ├── libuvwasi.a.meta │ │ │ │ ├── libv8_base_without_compiler.a.meta │ │ │ │ ├── libv8_compiler.a.meta │ │ │ │ ├── libv8_initializers.a.meta │ │ │ │ ├── libv8_libbase.a.meta │ │ │ │ ├── libv8_libplatform.a.meta │ │ │ │ ├── libv8_snapshot.a.meta │ │ │ │ ├── libv8_zlib.a.meta │ │ │ │ └── libzlib.a.meta │ │ │ ├── macOS │ │ │ │ ├── PapiNodejs.bundle.meta │ │ │ │ ├── arm64 │ │ │ │ │ └── libnode.93.dylib.meta │ │ │ │ └── x86_64 │ │ │ │ │ └── libnode.93.dylib.meta │ │ │ └── x86_64 │ │ │ │ ├── PapiNodejs.dll.meta │ │ │ │ ├── libPapiNodejs.so.meta │ │ │ │ ├── libnode.dll.meta │ │ │ │ └── libnode.so.93.meta │ │ ├── Runtime │ │ │ ├── Src │ │ │ │ ├── Backends │ │ │ │ │ └── BackendNodeJS.cs │ │ │ │ └── Native │ │ │ │ │ └── PapiNodejsNative.cs │ │ │ └── com.tencent.puerts.nodejs.asmdef │ │ └── package.json │ ├── python │ │ ├── Plugins │ │ │ ├── Android │ │ │ │ └── libs │ │ │ │ │ └── x86_64 │ │ │ │ │ ├── libPapiPython.so.meta │ │ │ │ │ ├── libcrypto_python.so.meta │ │ │ │ │ ├── libpython3.14.so.meta │ │ │ │ │ ├── libsqlite3_python.so.meta │ │ │ │ │ └── libssl_python.so.meta │ │ │ ├── macOS │ │ │ │ └── arm64 │ │ │ │ │ └── libPapiPython.dylib.meta │ │ │ └── x86_64 │ │ │ │ ├── PapiPython.dll.meta │ │ │ │ └── libPapiPython.so.meta │ │ ├── Runtime │ │ │ ├── Src │ │ │ │ ├── Backends │ │ │ │ │ └── BackendPython.cs │ │ │ │ ├── Loaders │ │ │ │ │ └── PythonLoader.cs │ │ │ │ └── Native │ │ │ │ │ └── PapiPythonNative.cs │ │ │ └── com.tencent.puerts.python.asmdef │ │ └── package.json │ ├── quickjs │ │ ├── Plugins │ │ │ ├── Android │ │ │ │ └── libs │ │ │ │ │ ├── arm64-v8a │ │ │ │ │ └── libPapiQuickjs.so.meta │ │ │ │ │ ├── armeabi-v7a │ │ │ │ │ └── libPapiQuickjs.so.meta │ │ │ │ │ └── x86_64 │ │ │ │ │ └── libPapiQuickjs.so.meta │ │ │ ├── OpenHarmony │ │ │ │ └── libs │ │ │ │ │ ├── arm64-v8a │ │ │ │ │ └── libPapiQuickjs.so.meta │ │ │ │ │ └── armeabi-v7a │ │ │ │ │ └── libPapiQuickjs.so.meta │ │ │ ├── WebGL │ │ │ │ └── libPapiQuickjs.a.meta │ │ │ ├── iOS │ │ │ │ └── libPapiQuickjs.a.meta │ │ │ ├── macOS │ │ │ │ └── PapiQuickjs.bundle.meta │ │ │ └── x86_64 │ │ │ │ ├── PapiQuickjs.dll.meta │ │ │ │ └── libPapiQuickjs.so.meta │ │ ├── Runtime │ │ │ ├── Src │ │ │ │ ├── Backends │ │ │ │ │ └── BackendQuickJS.cs │ │ │ │ └── Native │ │ │ │ │ └── PapiQjsNative.cs │ │ │ └── com.tencent.puerts.quickjs.asmdef │ │ └── package.json │ ├── v8 │ │ ├── Plugins │ │ │ ├── Android │ │ │ │ └── libs │ │ │ │ │ ├── arm64-v8a │ │ │ │ │ └── libPapiV8.so.meta │ │ │ │ │ ├── armeabi-v7a │ │ │ │ │ └── libPapiV8.so.meta │ │ │ │ │ └── x86_64 │ │ │ │ │ └── libPapiV8.so.meta │ │ │ ├── OpenHarmony │ │ │ │ └── libs │ │ │ │ │ ├── arm64-v8a │ │ │ │ │ └── libPapiV8.so.meta │ │ │ │ │ └── armeabi-v7a │ │ │ │ │ └── libPapiV8.so.meta │ │ │ ├── iOS │ │ │ │ ├── libPapiV8.a.meta │ │ │ │ └── libwee8.a.meta │ │ │ ├── macOS │ │ │ │ └── PapiV8.bundle.meta │ │ │ └── x86_64 │ │ │ │ ├── PapiV8.dll.meta │ │ │ │ └── libPapiV8.so.meta │ │ ├── Runtime │ │ │ ├── Src │ │ │ │ ├── Backends │ │ │ │ │ └── BackendV8.cs │ │ │ │ └── Native │ │ │ │ │ └── PapiV8Native.cs │ │ │ └── com.tencent.puerts.v8.asmdef │ │ └── package.json │ └── webgl │ │ ├── Changelog.md │ │ ├── Changelog.md.meta │ │ ├── Cli.meta │ │ ├── Cli │ │ └── Javascripts~ │ │ │ ├── cmd.js │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── PuertsWebglBuildProcessing.cs │ │ ├── PuertsWebglBuildProcessing.cs.meta │ │ ├── com.tencent.puerts.webgl.Editor.asmdef │ │ └── com.tencent.puerts.webgl.Editor.asmdef.meta │ │ ├── Javascripts~ │ │ ├── PuertsDLLMock │ │ │ ├── buffer.ts │ │ │ ├── build.js │ │ │ ├── declare.d.ts │ │ │ ├── dist │ │ │ │ └── puerts-runtime.js │ │ │ ├── index.ts │ │ │ ├── library.ts │ │ │ ├── pesapiImpl.ts │ │ │ ├── tsconfig.json │ │ │ └── webpack.config.js │ │ └── package.json │ │ ├── LICENSE │ │ ├── LICENSE.meta │ │ ├── Runtime.meta │ │ ├── Runtime │ │ ├── Plugins.meta │ │ ├── Plugins │ │ │ ├── WebGL.meta │ │ │ └── WebGL │ │ │ │ ├── puerts.cpp │ │ │ │ ├── puerts.cpp.meta │ │ │ │ ├── puerts.jslib │ │ │ │ └── puerts.jslib.meta │ │ ├── Src │ │ │ ├── Backends │ │ │ │ └── BackendWebGL.cs │ │ │ └── Native │ │ │ │ └── PapiWebGLNative.cs │ │ ├── WebGL.cs │ │ ├── WebGL.cs.meta │ │ ├── com.tencent.puerts.webgl.asmdef │ │ └── com.tencent.puerts.webgl.asmdef.meta │ │ ├── package.json │ │ ├── package.json.meta │ │ ├── readme.md │ │ └── readme.md.meta └── v8cc │ ├── CMakeLists.txt │ └── v8cc.cc └── unreal ├── Puerts ├── Content │ └── JavaScript │ │ ├── PuertsEditor │ │ ├── CodeAnalyze.js │ │ ├── CodeAnalyze.js.map │ │ ├── TypeScriptInternal.js │ │ ├── TypeScriptInternal.js.map │ │ ├── UEMeta.js │ │ ├── UEMeta.js.map │ │ └── package.json │ │ ├── ffi │ │ ├── binding.js │ │ ├── buffer-ext.js │ │ ├── index.js │ │ └── type.js │ │ ├── puerts │ │ ├── argv.js │ │ ├── callable.js │ │ ├── events.js │ │ ├── first_run.js │ │ ├── hot_reload.js │ │ ├── jit_skeleton.js │ │ ├── jit_stub.js │ │ ├── log.js │ │ ├── message.js │ │ ├── modular.js │ │ ├── pesaddon.js │ │ ├── polyfill.js │ │ ├── promises.js │ │ ├── uelazyload.js │ │ ├── wasm3_helper.js │ │ └── websocketpp.js │ │ ├── react-umg │ │ └── index.js │ │ ├── thirdparty │ │ └── base64-binary.js │ │ ├── utils │ │ └── fs.js │ │ └── wasm │ │ ├── WasmMain.json │ │ ├── WasmMain.wasm │ │ ├── WasmMain_Editor.wasm │ │ ├── main.wasm │ │ ├── modules.json │ │ ├── test.wasm │ │ └── testvector.wasm ├── Puerts.uplugin ├── PuertsEditor │ ├── CodeAnalyze.ts │ ├── TypeScriptInternal.ts │ ├── UEMeta.ts │ ├── package.json │ └── tsconfig.json ├── Resources │ ├── ButtonIcon_40x.png │ └── Icon128.png ├── Source │ ├── CSharpParamDefaultValueMetas │ │ ├── CSharpParamDefaultValueMetas.cs │ │ ├── CSharpParamDefaultValueMetas.ubtplugin.csproj │ │ └── DotNetTarget.csproj.props │ ├── DeclarationGenerator │ │ ├── DeclarationGenerator.Build.cs │ │ ├── Private │ │ │ ├── CodeGenerator.cpp │ │ │ ├── DeclarationGenerator.cpp │ │ │ ├── GenDTSCommands.cpp │ │ │ ├── GenDTSStyle.cpp │ │ │ └── TemplateBindingGenerator.cpp │ │ └── Public │ │ │ ├── CodeGenerator.h │ │ │ ├── GenDTSCommands.h │ │ │ ├── GenDTSStyle.h │ │ │ ├── IDeclarationGenerator.h │ │ │ ├── TemplateBindingGenerator.h │ │ │ └── TypeScriptDeclarationGenerator.h │ ├── JsEnv │ │ ├── JsEnv.Build.cs │ │ ├── Private │ │ │ ├── ContainerMeta.cpp │ │ │ ├── ContainerMeta.h │ │ │ ├── ContainerWrapper.cpp │ │ │ ├── ContainerWrapper.h │ │ │ ├── CppObjectMapper.cpp │ │ │ ├── CppObjectMapper.h │ │ │ ├── DataTransfer.cpp │ │ │ ├── DefaultJSModuleLoader.cpp │ │ │ ├── DelegateWrapper.cpp │ │ │ ├── DelegateWrapper.h │ │ │ ├── DynamicDelegateProxy.cpp │ │ │ ├── DynamicDelegateProxy.h │ │ │ ├── Ext │ │ │ │ └── UEExtension.cpp │ │ │ ├── ExtensionMethods.cpp │ │ │ ├── FFIBinding.cpp │ │ │ ├── FunctionTranslator.cpp │ │ │ ├── FunctionTranslator.h │ │ │ ├── Gen │ │ │ │ ├── FBox2D_Wrap.cpp │ │ │ │ ├── FColor_Wrap.cpp │ │ │ │ ├── FGuid_Wrap.cpp │ │ │ │ ├── FIntPoint_Wrap.cpp │ │ │ │ ├── FIntVector_Wrap.cpp │ │ │ │ ├── FLinearColor_Wrap.cpp │ │ │ │ ├── FQuat_Wrap.cpp │ │ │ │ ├── FRotator_Wrap.cpp │ │ │ │ ├── FTransform_Wrap.cpp │ │ │ │ ├── FVector2D_Wrap.cpp │ │ │ │ ├── FVector4_Wrap.cpp │ │ │ │ ├── FVector_Wrap.cpp │ │ │ │ └── UsingTypeDecl.hpp │ │ │ ├── IOS │ │ │ │ └── PesapiFrameworkLoader.mm │ │ │ ├── JSClassRegister.cpp │ │ │ ├── JSGeneratedClass.cpp │ │ │ ├── JSGeneratedClass.h │ │ │ ├── JSGeneratedFunction.cpp │ │ │ ├── JSGeneratedFunction.h │ │ │ ├── JSLogger.cpp │ │ │ ├── JSWidgetGeneratedClass.cpp │ │ │ ├── JSWidgetGeneratedClass.h │ │ │ ├── JsEnv.cpp │ │ │ ├── JsEnvGroup.cpp │ │ │ ├── JsEnvImpl.cpp │ │ │ ├── JsEnvImpl.h │ │ │ ├── JsEnvModule.cpp │ │ │ ├── ObjectCacheNode.h │ │ │ ├── ObjectMapper.h │ │ │ ├── ObjectRetainer.cpp │ │ │ ├── PesapiAddonLoad.cpp │ │ │ ├── PesapiV8Impl.cpp │ │ │ ├── PromiseRejectCallback.hpp │ │ │ ├── PropertyTranslator.cpp │ │ │ ├── PropertyTranslator.h │ │ │ ├── PuertsWasm │ │ │ │ ├── WasmJsFunctionParams.cpp │ │ │ │ ├── WasmJsFunctionParams.h │ │ │ │ ├── WasmStaticUEBinding.cpp │ │ │ │ └── WasmTestForStaticBinding.cpp │ │ │ ├── SoftObjectWrapper.cpp │ │ │ ├── SoftObjectWrapper.h │ │ │ ├── SourceFileWatcher.cpp │ │ │ ├── StructWrapper.cpp │ │ │ ├── StructWrapper.h │ │ │ ├── TypeScriptBlueprint.cpp │ │ │ ├── TypeScriptGeneratedClass.cpp │ │ │ ├── V8InspectorImpl.cpp │ │ │ ├── V8InspectorImpl.h │ │ │ ├── V8Utils.cpp │ │ │ └── WebSocketImpl.cpp │ │ └── Public │ │ │ ├── ArrayBuffer.h │ │ │ ├── Binding.hpp │ │ │ ├── DataTransfer.h │ │ │ ├── DynamicInvoker.h │ │ │ ├── ExtensionMethods.h │ │ │ ├── FFIBinding.h │ │ │ ├── JSClassRegister.h │ │ │ ├── JSLogger.h │ │ │ ├── JSModuleLoader.h │ │ │ ├── JsEnv.h │ │ │ ├── JsEnvGroup.h │ │ │ ├── JsEnvModule.h │ │ │ ├── JsObject.h │ │ │ ├── NamespaceDef.h │ │ │ ├── Object.hpp │ │ │ ├── ObjectRetainer.h │ │ │ ├── PString.h │ │ │ ├── PathEscape.h │ │ │ ├── PesapiBackend.hpp │ │ │ ├── PesapiObject.hpp │ │ │ ├── PropertyMacros.h │ │ │ ├── PuertsNamespaceDef.h │ │ │ ├── ScriptBackend.hpp │ │ │ ├── SourceFileWatcher.h │ │ │ ├── StaticCall.hpp │ │ │ ├── StdFunctionConverter.hpp │ │ │ ├── TsDynamicInvoker.h │ │ │ ├── TypeInfo.hpp │ │ │ ├── TypeScriptBlueprint.h │ │ │ ├── TypeScriptGeneratedClass.h │ │ │ ├── UECompatible.h │ │ │ ├── UEDataBinding.hpp │ │ │ ├── V8Backend.hpp │ │ │ ├── V8FastCall.hpp │ │ │ ├── V8Object.hpp │ │ │ ├── V8Utils.h │ │ │ └── pesapi.h │ ├── ParamDefaultValueMetas │ │ ├── ParamDefaultValueMetas.Build.cs │ │ └── Private │ │ │ └── ParamDefaultValueMetasModule.cpp │ ├── Puerts │ │ ├── Private │ │ │ ├── PuertsModule.cpp │ │ │ ├── PuertsSetting.cpp │ │ │ └── PuertsSetting.h │ │ ├── Public │ │ │ └── PuertsModule.h │ │ └── Puerts.Build.cs │ ├── PuertsEditor │ │ ├── Private │ │ │ ├── FileSystemOperation.cpp │ │ │ ├── PEBlueprintAsset.cpp │ │ │ ├── PEBlueprintMetaData.cpp │ │ │ ├── PEDirectoryWatcher.cpp │ │ │ ├── PuertsEditorModule.cpp │ │ │ ├── TypeScriptCompilerContext.cpp │ │ │ └── TypeScriptCompilerContext.h │ │ ├── Public │ │ │ ├── FileSystemOperation.h │ │ │ ├── PEBlueprintAsset.h │ │ │ ├── PEBlueprintMetaData.h │ │ │ ├── PEDirectoryWatcher.h │ │ │ └── PuertsEditorModule.h │ │ └── PuertsEditor.Build.cs │ └── WasmCore │ │ ├── Private │ │ ├── Wasm3ExportDef.cpp │ │ ├── WasmCore.cpp │ │ ├── WasmEnv.cpp │ │ ├── WasmFunction.cpp │ │ ├── WasmModule.cpp │ │ ├── WasmModuleInstance.cpp │ │ ├── WasmRuntime.cpp │ │ └── WasmStaticLink.cpp │ │ ├── Public │ │ ├── Wasm3ExportDef.h │ │ ├── WasmBindingTemplate.hpp │ │ ├── WasmCommonIncludes.h │ │ ├── WasmCore.h │ │ ├── WasmEnv.h │ │ ├── WasmFunction.h │ │ ├── WasmModule.h │ │ ├── WasmModuleInstance.h │ │ ├── WasmRuntime.h │ │ └── WasmStaticLink.h │ │ ├── ThirdPart │ │ └── wasm3 │ │ │ ├── m3_api_libc.c │ │ │ ├── m3_api_libc.h │ │ │ ├── m3_api_meta_wasi.c │ │ │ ├── m3_api_tracer.c │ │ │ ├── m3_api_tracer.h │ │ │ ├── m3_api_uvwasi.c │ │ │ ├── m3_api_wasi.c │ │ │ ├── m3_api_wasi.h │ │ │ ├── m3_bind.c │ │ │ ├── m3_bind.h │ │ │ ├── m3_code.c │ │ │ ├── m3_code.h │ │ │ ├── m3_compile.c │ │ │ ├── m3_compile.h │ │ │ ├── m3_config.h │ │ │ ├── m3_config_platforms.h │ │ │ ├── m3_core.c │ │ │ ├── m3_core.h │ │ │ ├── m3_env.c │ │ │ ├── m3_env.h │ │ │ ├── m3_exception.h │ │ │ ├── m3_exec.c │ │ │ ├── m3_exec.h │ │ │ ├── m3_exec_defs.h │ │ │ ├── m3_function.c │ │ │ ├── m3_function.h │ │ │ ├── m3_info.c │ │ │ ├── m3_info.h │ │ │ ├── m3_math_utils.h │ │ │ ├── m3_module.c │ │ │ ├── m3_parse.c │ │ │ ├── wasm3.h │ │ │ └── wasm3_defs.h │ │ └── WasmCore.Build.cs ├── ThirdParty │ ├── Include │ │ ├── asio │ │ │ ├── asio.hpp │ │ │ └── asio │ │ │ │ ├── any_io_executor.hpp │ │ │ │ ├── associated_allocator.hpp │ │ │ │ ├── associated_cancellation_slot.hpp │ │ │ │ ├── associated_executor.hpp │ │ │ │ ├── associator.hpp │ │ │ │ ├── async_result.hpp │ │ │ │ ├── awaitable.hpp │ │ │ │ ├── basic_datagram_socket.hpp │ │ │ │ ├── basic_deadline_timer.hpp │ │ │ │ ├── basic_io_object.hpp │ │ │ │ ├── basic_raw_socket.hpp │ │ │ │ ├── basic_seq_packet_socket.hpp │ │ │ │ ├── basic_serial_port.hpp │ │ │ │ ├── basic_signal_set.hpp │ │ │ │ ├── basic_socket.hpp │ │ │ │ ├── basic_socket_acceptor.hpp │ │ │ │ ├── basic_socket_iostream.hpp │ │ │ │ ├── basic_socket_streambuf.hpp │ │ │ │ ├── basic_stream_socket.hpp │ │ │ │ ├── basic_streambuf.hpp │ │ │ │ ├── basic_streambuf_fwd.hpp │ │ │ │ ├── basic_waitable_timer.hpp │ │ │ │ ├── bind_cancellation_slot.hpp │ │ │ │ ├── bind_executor.hpp │ │ │ │ ├── buffer.hpp │ │ │ │ ├── buffered_read_stream.hpp │ │ │ │ ├── buffered_read_stream_fwd.hpp │ │ │ │ ├── buffered_stream.hpp │ │ │ │ ├── buffered_stream_fwd.hpp │ │ │ │ ├── buffered_write_stream.hpp │ │ │ │ ├── buffered_write_stream_fwd.hpp │ │ │ │ ├── buffers_iterator.hpp │ │ │ │ ├── cancellation_signal.hpp │ │ │ │ ├── cancellation_state.hpp │ │ │ │ ├── cancellation_type.hpp │ │ │ │ ├── co_spawn.hpp │ │ │ │ ├── completion_condition.hpp │ │ │ │ ├── compose.hpp │ │ │ │ ├── connect.hpp │ │ │ │ ├── coroutine.hpp │ │ │ │ ├── deadline_timer.hpp │ │ │ │ ├── defer.hpp │ │ │ │ ├── detached.hpp │ │ │ │ ├── detail │ │ │ │ ├── array.hpp │ │ │ │ ├── array_fwd.hpp │ │ │ │ ├── assert.hpp │ │ │ │ ├── atomic_count.hpp │ │ │ │ ├── base_from_cancellation_state.hpp │ │ │ │ ├── base_from_completion_cond.hpp │ │ │ │ ├── bind_handler.hpp │ │ │ │ ├── blocking_executor_op.hpp │ │ │ │ ├── buffer_resize_guard.hpp │ │ │ │ ├── buffer_sequence_adapter.hpp │ │ │ │ ├── buffered_stream_storage.hpp │ │ │ │ ├── bulk_executor_op.hpp │ │ │ │ ├── call_stack.hpp │ │ │ │ ├── chrono.hpp │ │ │ │ ├── chrono_time_traits.hpp │ │ │ │ ├── completion_handler.hpp │ │ │ │ ├── concurrency_hint.hpp │ │ │ │ ├── conditionally_enabled_event.hpp │ │ │ │ ├── conditionally_enabled_mutex.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── consuming_buffers.hpp │ │ │ │ ├── cstddef.hpp │ │ │ │ ├── cstdint.hpp │ │ │ │ ├── date_time_fwd.hpp │ │ │ │ ├── deadline_timer_service.hpp │ │ │ │ ├── dependent_type.hpp │ │ │ │ ├── descriptor_ops.hpp │ │ │ │ ├── descriptor_read_op.hpp │ │ │ │ ├── descriptor_write_op.hpp │ │ │ │ ├── dev_poll_reactor.hpp │ │ │ │ ├── epoll_reactor.hpp │ │ │ │ ├── event.hpp │ │ │ │ ├── eventfd_select_interrupter.hpp │ │ │ │ ├── executor_function.hpp │ │ │ │ ├── executor_op.hpp │ │ │ │ ├── fd_set_adapter.hpp │ │ │ │ ├── fenced_block.hpp │ │ │ │ ├── functional.hpp │ │ │ │ ├── future.hpp │ │ │ │ ├── gcc_arm_fenced_block.hpp │ │ │ │ ├── gcc_hppa_fenced_block.hpp │ │ │ │ ├── gcc_sync_fenced_block.hpp │ │ │ │ ├── gcc_x86_fenced_block.hpp │ │ │ │ ├── global.hpp │ │ │ │ ├── handler_alloc_helpers.hpp │ │ │ │ ├── handler_cont_helpers.hpp │ │ │ │ ├── handler_invoke_helpers.hpp │ │ │ │ ├── handler_tracking.hpp │ │ │ │ ├── handler_type_requirements.hpp │ │ │ │ ├── handler_work.hpp │ │ │ │ ├── hash_map.hpp │ │ │ │ ├── impl │ │ │ │ │ ├── buffer_sequence_adapter.ipp │ │ │ │ │ ├── descriptor_ops.ipp │ │ │ │ │ ├── dev_poll_reactor.hpp │ │ │ │ │ ├── dev_poll_reactor.ipp │ │ │ │ │ ├── epoll_reactor.hpp │ │ │ │ │ ├── epoll_reactor.ipp │ │ │ │ │ ├── eventfd_select_interrupter.ipp │ │ │ │ │ ├── handler_tracking.ipp │ │ │ │ │ ├── kqueue_reactor.hpp │ │ │ │ │ ├── kqueue_reactor.ipp │ │ │ │ │ ├── null_event.ipp │ │ │ │ │ ├── pipe_select_interrupter.ipp │ │ │ │ │ ├── posix_event.ipp │ │ │ │ │ ├── posix_mutex.ipp │ │ │ │ │ ├── posix_thread.ipp │ │ │ │ │ ├── posix_tss_ptr.ipp │ │ │ │ │ ├── reactive_descriptor_service.ipp │ │ │ │ │ ├── reactive_serial_port_service.ipp │ │ │ │ │ ├── reactive_socket_service_base.ipp │ │ │ │ │ ├── resolver_service_base.ipp │ │ │ │ │ ├── scheduler.ipp │ │ │ │ │ ├── select_reactor.hpp │ │ │ │ │ ├── select_reactor.ipp │ │ │ │ │ ├── service_registry.hpp │ │ │ │ │ ├── service_registry.ipp │ │ │ │ │ ├── signal_set_service.ipp │ │ │ │ │ ├── socket_ops.ipp │ │ │ │ │ ├── socket_select_interrupter.ipp │ │ │ │ │ ├── strand_executor_service.hpp │ │ │ │ │ ├── strand_executor_service.ipp │ │ │ │ │ ├── strand_service.hpp │ │ │ │ │ ├── strand_service.ipp │ │ │ │ │ ├── thread_context.ipp │ │ │ │ │ ├── throw_error.ipp │ │ │ │ │ ├── timer_queue_ptime.ipp │ │ │ │ │ ├── timer_queue_set.ipp │ │ │ │ │ ├── win_event.ipp │ │ │ │ │ ├── win_iocp_handle_service.ipp │ │ │ │ │ ├── win_iocp_io_context.hpp │ │ │ │ │ ├── win_iocp_io_context.ipp │ │ │ │ │ ├── win_iocp_serial_port_service.ipp │ │ │ │ │ ├── win_iocp_socket_service_base.ipp │ │ │ │ │ ├── win_mutex.ipp │ │ │ │ │ ├── win_object_handle_service.ipp │ │ │ │ │ ├── win_static_mutex.ipp │ │ │ │ │ ├── win_thread.ipp │ │ │ │ │ ├── win_tss_ptr.ipp │ │ │ │ │ ├── winrt_ssocket_service_base.ipp │ │ │ │ │ ├── winrt_timer_scheduler.hpp │ │ │ │ │ ├── winrt_timer_scheduler.ipp │ │ │ │ │ └── winsock_init.ipp │ │ │ │ ├── io_control.hpp │ │ │ │ ├── io_object_impl.hpp │ │ │ │ ├── is_buffer_sequence.hpp │ │ │ │ ├── is_executor.hpp │ │ │ │ ├── keyword_tss_ptr.hpp │ │ │ │ ├── kqueue_reactor.hpp │ │ │ │ ├── limits.hpp │ │ │ │ ├── local_free_on_block_exit.hpp │ │ │ │ ├── macos_fenced_block.hpp │ │ │ │ ├── memory.hpp │ │ │ │ ├── mutex.hpp │ │ │ │ ├── non_const_lvalue.hpp │ │ │ │ ├── noncopyable.hpp │ │ │ │ ├── null_event.hpp │ │ │ │ ├── null_fenced_block.hpp │ │ │ │ ├── null_global.hpp │ │ │ │ ├── null_mutex.hpp │ │ │ │ ├── null_reactor.hpp │ │ │ │ ├── null_signal_blocker.hpp │ │ │ │ ├── null_socket_service.hpp │ │ │ │ ├── null_static_mutex.hpp │ │ │ │ ├── null_thread.hpp │ │ │ │ ├── null_tss_ptr.hpp │ │ │ │ ├── object_pool.hpp │ │ │ │ ├── old_win_sdk_compat.hpp │ │ │ │ ├── op_queue.hpp │ │ │ │ ├── operation.hpp │ │ │ │ ├── pipe_select_interrupter.hpp │ │ │ │ ├── pop_options.hpp │ │ │ │ ├── posix_event.hpp │ │ │ │ ├── posix_fd_set_adapter.hpp │ │ │ │ ├── posix_global.hpp │ │ │ │ ├── posix_mutex.hpp │ │ │ │ ├── posix_signal_blocker.hpp │ │ │ │ ├── posix_static_mutex.hpp │ │ │ │ ├── posix_thread.hpp │ │ │ │ ├── posix_tss_ptr.hpp │ │ │ │ ├── push_options.hpp │ │ │ │ ├── reactive_descriptor_service.hpp │ │ │ │ ├── reactive_null_buffers_op.hpp │ │ │ │ ├── reactive_serial_port_service.hpp │ │ │ │ ├── reactive_socket_accept_op.hpp │ │ │ │ ├── reactive_socket_connect_op.hpp │ │ │ │ ├── reactive_socket_recv_op.hpp │ │ │ │ ├── reactive_socket_recvfrom_op.hpp │ │ │ │ ├── reactive_socket_recvmsg_op.hpp │ │ │ │ ├── reactive_socket_send_op.hpp │ │ │ │ ├── reactive_socket_sendto_op.hpp │ │ │ │ ├── reactive_socket_service.hpp │ │ │ │ ├── reactive_socket_service_base.hpp │ │ │ │ ├── reactive_wait_op.hpp │ │ │ │ ├── reactor.hpp │ │ │ │ ├── reactor_fwd.hpp │ │ │ │ ├── reactor_op.hpp │ │ │ │ ├── reactor_op_queue.hpp │ │ │ │ ├── recycling_allocator.hpp │ │ │ │ ├── regex_fwd.hpp │ │ │ │ ├── resolve_endpoint_op.hpp │ │ │ │ ├── resolve_op.hpp │ │ │ │ ├── resolve_query_op.hpp │ │ │ │ ├── resolver_service.hpp │ │ │ │ ├── resolver_service_base.hpp │ │ │ │ ├── scheduler.hpp │ │ │ │ ├── scheduler_operation.hpp │ │ │ │ ├── scheduler_thread_info.hpp │ │ │ │ ├── scoped_lock.hpp │ │ │ │ ├── scoped_ptr.hpp │ │ │ │ ├── select_interrupter.hpp │ │ │ │ ├── select_reactor.hpp │ │ │ │ ├── service_registry.hpp │ │ │ │ ├── signal_blocker.hpp │ │ │ │ ├── signal_handler.hpp │ │ │ │ ├── signal_init.hpp │ │ │ │ ├── signal_op.hpp │ │ │ │ ├── signal_set_service.hpp │ │ │ │ ├── socket_holder.hpp │ │ │ │ ├── socket_ops.hpp │ │ │ │ ├── socket_option.hpp │ │ │ │ ├── socket_select_interrupter.hpp │ │ │ │ ├── socket_types.hpp │ │ │ │ ├── solaris_fenced_block.hpp │ │ │ │ ├── source_location.hpp │ │ │ │ ├── static_mutex.hpp │ │ │ │ ├── std_event.hpp │ │ │ │ ├── std_fenced_block.hpp │ │ │ │ ├── std_global.hpp │ │ │ │ ├── std_mutex.hpp │ │ │ │ ├── std_static_mutex.hpp │ │ │ │ ├── std_thread.hpp │ │ │ │ ├── strand_executor_service.hpp │ │ │ │ ├── strand_service.hpp │ │ │ │ ├── string_view.hpp │ │ │ │ ├── thread.hpp │ │ │ │ ├── thread_context.hpp │ │ │ │ ├── thread_group.hpp │ │ │ │ ├── thread_info_base.hpp │ │ │ │ ├── throw_error.hpp │ │ │ │ ├── throw_exception.hpp │ │ │ │ ├── timer_queue.hpp │ │ │ │ ├── timer_queue_base.hpp │ │ │ │ ├── timer_queue_ptime.hpp │ │ │ │ ├── timer_queue_set.hpp │ │ │ │ ├── timer_scheduler.hpp │ │ │ │ ├── timer_scheduler_fwd.hpp │ │ │ │ ├── tss_ptr.hpp │ │ │ │ ├── type_traits.hpp │ │ │ │ ├── variadic_templates.hpp │ │ │ │ ├── wait_handler.hpp │ │ │ │ ├── wait_op.hpp │ │ │ │ ├── win_event.hpp │ │ │ │ ├── win_fd_set_adapter.hpp │ │ │ │ ├── win_fenced_block.hpp │ │ │ │ ├── win_global.hpp │ │ │ │ ├── win_iocp_handle_read_op.hpp │ │ │ │ ├── win_iocp_handle_service.hpp │ │ │ │ ├── win_iocp_handle_write_op.hpp │ │ │ │ ├── win_iocp_io_context.hpp │ │ │ │ ├── win_iocp_null_buffers_op.hpp │ │ │ │ ├── win_iocp_operation.hpp │ │ │ │ ├── win_iocp_overlapped_op.hpp │ │ │ │ ├── win_iocp_overlapped_ptr.hpp │ │ │ │ ├── win_iocp_serial_port_service.hpp │ │ │ │ ├── win_iocp_socket_accept_op.hpp │ │ │ │ ├── win_iocp_socket_connect_op.hpp │ │ │ │ ├── win_iocp_socket_recv_op.hpp │ │ │ │ ├── win_iocp_socket_recvfrom_op.hpp │ │ │ │ ├── win_iocp_socket_recvmsg_op.hpp │ │ │ │ ├── win_iocp_socket_send_op.hpp │ │ │ │ ├── win_iocp_socket_service.hpp │ │ │ │ ├── win_iocp_socket_service_base.hpp │ │ │ │ ├── win_iocp_thread_info.hpp │ │ │ │ ├── win_iocp_wait_op.hpp │ │ │ │ ├── win_mutex.hpp │ │ │ │ ├── win_object_handle_service.hpp │ │ │ │ ├── win_static_mutex.hpp │ │ │ │ ├── win_thread.hpp │ │ │ │ ├── win_tss_ptr.hpp │ │ │ │ ├── winapp_thread.hpp │ │ │ │ ├── wince_thread.hpp │ │ │ │ ├── winrt_async_manager.hpp │ │ │ │ ├── winrt_async_op.hpp │ │ │ │ ├── winrt_resolve_op.hpp │ │ │ │ ├── winrt_resolver_service.hpp │ │ │ │ ├── winrt_socket_connect_op.hpp │ │ │ │ ├── winrt_socket_recv_op.hpp │ │ │ │ ├── winrt_socket_send_op.hpp │ │ │ │ ├── winrt_ssocket_service.hpp │ │ │ │ ├── winrt_ssocket_service_base.hpp │ │ │ │ ├── winrt_timer_scheduler.hpp │ │ │ │ ├── winrt_utils.hpp │ │ │ │ ├── winsock_init.hpp │ │ │ │ ├── work_dispatcher.hpp │ │ │ │ └── wrapped_handler.hpp │ │ │ │ ├── dispatch.hpp │ │ │ │ ├── error.hpp │ │ │ │ ├── error_code.hpp │ │ │ │ ├── execution.hpp │ │ │ │ ├── execution │ │ │ │ ├── allocator.hpp │ │ │ │ ├── any_executor.hpp │ │ │ │ ├── bad_executor.hpp │ │ │ │ ├── blocking.hpp │ │ │ │ ├── blocking_adaptation.hpp │ │ │ │ ├── bulk_execute.hpp │ │ │ │ ├── bulk_guarantee.hpp │ │ │ │ ├── connect.hpp │ │ │ │ ├── context.hpp │ │ │ │ ├── context_as.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── as_invocable.hpp │ │ │ │ │ ├── as_operation.hpp │ │ │ │ │ ├── as_receiver.hpp │ │ │ │ │ ├── bulk_sender.hpp │ │ │ │ │ ├── submit_receiver.hpp │ │ │ │ │ └── void_receiver.hpp │ │ │ │ ├── execute.hpp │ │ │ │ ├── executor.hpp │ │ │ │ ├── impl │ │ │ │ │ ├── bad_executor.ipp │ │ │ │ │ └── receiver_invocation_error.ipp │ │ │ │ ├── invocable_archetype.hpp │ │ │ │ ├── mapping.hpp │ │ │ │ ├── occupancy.hpp │ │ │ │ ├── operation_state.hpp │ │ │ │ ├── outstanding_work.hpp │ │ │ │ ├── prefer_only.hpp │ │ │ │ ├── receiver.hpp │ │ │ │ ├── receiver_invocation_error.hpp │ │ │ │ ├── relationship.hpp │ │ │ │ ├── schedule.hpp │ │ │ │ ├── scheduler.hpp │ │ │ │ ├── sender.hpp │ │ │ │ ├── set_done.hpp │ │ │ │ ├── set_error.hpp │ │ │ │ ├── set_value.hpp │ │ │ │ ├── start.hpp │ │ │ │ └── submit.hpp │ │ │ │ ├── execution_context.hpp │ │ │ │ ├── executor.hpp │ │ │ │ ├── executor_work_guard.hpp │ │ │ │ ├── experimental │ │ │ │ ├── append.hpp │ │ │ │ ├── as_single.hpp │ │ │ │ ├── as_tuple.hpp │ │ │ │ ├── awaitable_operators.hpp │ │ │ │ ├── cancellation_condition.hpp │ │ │ │ ├── coro.hpp │ │ │ │ ├── deferred.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── completion_handler_erasure.hpp │ │ │ │ │ ├── coro_promise_allocator.hpp │ │ │ │ │ ├── coro_traits.hpp │ │ │ │ │ └── partial_promise.hpp │ │ │ │ ├── impl │ │ │ │ │ ├── append.hpp │ │ │ │ │ ├── as_single.hpp │ │ │ │ │ ├── as_tuple.hpp │ │ │ │ │ ├── deferred.hpp │ │ │ │ │ ├── parallel_group.hpp │ │ │ │ │ ├── prepend.hpp │ │ │ │ │ └── promise.hpp │ │ │ │ ├── parallel_group.hpp │ │ │ │ ├── prepend.hpp │ │ │ │ ├── promise.hpp │ │ │ │ └── use_coro.hpp │ │ │ │ ├── generic │ │ │ │ ├── basic_endpoint.hpp │ │ │ │ ├── datagram_protocol.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── endpoint.hpp │ │ │ │ │ └── impl │ │ │ │ │ │ └── endpoint.ipp │ │ │ │ ├── raw_protocol.hpp │ │ │ │ ├── seq_packet_protocol.hpp │ │ │ │ └── stream_protocol.hpp │ │ │ │ ├── handler_alloc_hook.hpp │ │ │ │ ├── handler_continuation_hook.hpp │ │ │ │ ├── handler_invoke_hook.hpp │ │ │ │ ├── high_resolution_timer.hpp │ │ │ │ ├── impl │ │ │ │ ├── awaitable.hpp │ │ │ │ ├── buffered_read_stream.hpp │ │ │ │ ├── buffered_write_stream.hpp │ │ │ │ ├── co_spawn.hpp │ │ │ │ ├── compose.hpp │ │ │ │ ├── connect.hpp │ │ │ │ ├── defer.hpp │ │ │ │ ├── detached.hpp │ │ │ │ ├── dispatch.hpp │ │ │ │ ├── error.ipp │ │ │ │ ├── error_code.ipp │ │ │ │ ├── execution_context.hpp │ │ │ │ ├── execution_context.ipp │ │ │ │ ├── executor.hpp │ │ │ │ ├── executor.ipp │ │ │ │ ├── handler_alloc_hook.ipp │ │ │ │ ├── io_context.hpp │ │ │ │ ├── io_context.ipp │ │ │ │ ├── multiple_exceptions.ipp │ │ │ │ ├── post.hpp │ │ │ │ ├── read.hpp │ │ │ │ ├── read_at.hpp │ │ │ │ ├── read_until.hpp │ │ │ │ ├── redirect_error.hpp │ │ │ │ ├── serial_port_base.hpp │ │ │ │ ├── serial_port_base.ipp │ │ │ │ ├── spawn.hpp │ │ │ │ ├── src.hpp │ │ │ │ ├── system_context.hpp │ │ │ │ ├── system_context.ipp │ │ │ │ ├── system_executor.hpp │ │ │ │ ├── thread_pool.hpp │ │ │ │ ├── thread_pool.ipp │ │ │ │ ├── use_awaitable.hpp │ │ │ │ ├── use_future.hpp │ │ │ │ ├── write.hpp │ │ │ │ └── write_at.hpp │ │ │ │ ├── io_context.hpp │ │ │ │ ├── io_context_strand.hpp │ │ │ │ ├── io_service.hpp │ │ │ │ ├── io_service_strand.hpp │ │ │ │ ├── ip │ │ │ │ ├── address.hpp │ │ │ │ ├── address_v4.hpp │ │ │ │ ├── address_v4_iterator.hpp │ │ │ │ ├── address_v4_range.hpp │ │ │ │ ├── address_v6.hpp │ │ │ │ ├── address_v6_iterator.hpp │ │ │ │ ├── address_v6_range.hpp │ │ │ │ ├── bad_address_cast.hpp │ │ │ │ ├── basic_endpoint.hpp │ │ │ │ ├── basic_resolver.hpp │ │ │ │ ├── basic_resolver_entry.hpp │ │ │ │ ├── basic_resolver_iterator.hpp │ │ │ │ ├── basic_resolver_query.hpp │ │ │ │ ├── basic_resolver_results.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── endpoint.hpp │ │ │ │ │ ├── impl │ │ │ │ │ │ └── endpoint.ipp │ │ │ │ │ └── socket_option.hpp │ │ │ │ ├── host_name.hpp │ │ │ │ ├── icmp.hpp │ │ │ │ ├── impl │ │ │ │ │ ├── address.hpp │ │ │ │ │ ├── address.ipp │ │ │ │ │ ├── address_v4.hpp │ │ │ │ │ ├── address_v4.ipp │ │ │ │ │ ├── address_v6.hpp │ │ │ │ │ ├── address_v6.ipp │ │ │ │ │ ├── basic_endpoint.hpp │ │ │ │ │ ├── host_name.ipp │ │ │ │ │ ├── network_v4.hpp │ │ │ │ │ ├── network_v4.ipp │ │ │ │ │ ├── network_v6.hpp │ │ │ │ │ └── network_v6.ipp │ │ │ │ ├── multicast.hpp │ │ │ │ ├── network_v4.hpp │ │ │ │ ├── network_v6.hpp │ │ │ │ ├── resolver_base.hpp │ │ │ │ ├── resolver_query_base.hpp │ │ │ │ ├── tcp.hpp │ │ │ │ ├── udp.hpp │ │ │ │ ├── unicast.hpp │ │ │ │ └── v6_only.hpp │ │ │ │ ├── is_applicable_property.hpp │ │ │ │ ├── is_executor.hpp │ │ │ │ ├── is_read_buffered.hpp │ │ │ │ ├── is_write_buffered.hpp │ │ │ │ ├── local │ │ │ │ ├── basic_endpoint.hpp │ │ │ │ ├── connect_pair.hpp │ │ │ │ ├── datagram_protocol.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── endpoint.hpp │ │ │ │ │ └── impl │ │ │ │ │ │ └── endpoint.ipp │ │ │ │ └── stream_protocol.hpp │ │ │ │ ├── multiple_exceptions.hpp │ │ │ │ ├── packaged_task.hpp │ │ │ │ ├── placeholders.hpp │ │ │ │ ├── posix │ │ │ │ ├── basic_descriptor.hpp │ │ │ │ ├── basic_stream_descriptor.hpp │ │ │ │ ├── descriptor.hpp │ │ │ │ ├── descriptor_base.hpp │ │ │ │ └── stream_descriptor.hpp │ │ │ │ ├── post.hpp │ │ │ │ ├── prefer.hpp │ │ │ │ ├── query.hpp │ │ │ │ ├── read.hpp │ │ │ │ ├── read_at.hpp │ │ │ │ ├── read_until.hpp │ │ │ │ ├── redirect_error.hpp │ │ │ │ ├── require.hpp │ │ │ │ ├── require_concept.hpp │ │ │ │ ├── serial_port.hpp │ │ │ │ ├── serial_port_base.hpp │ │ │ │ ├── signal_set.hpp │ │ │ │ ├── socket_base.hpp │ │ │ │ ├── spawn.hpp │ │ │ │ ├── ssl.hpp │ │ │ │ ├── ssl │ │ │ │ ├── context.hpp │ │ │ │ ├── context_base.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── buffered_handshake_op.hpp │ │ │ │ │ ├── engine.hpp │ │ │ │ │ ├── handshake_op.hpp │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── engine.ipp │ │ │ │ │ │ └── openssl_init.ipp │ │ │ │ │ ├── io.hpp │ │ │ │ │ ├── openssl_init.hpp │ │ │ │ │ ├── openssl_types.hpp │ │ │ │ │ ├── password_callback.hpp │ │ │ │ │ ├── read_op.hpp │ │ │ │ │ ├── shutdown_op.hpp │ │ │ │ │ ├── stream_core.hpp │ │ │ │ │ ├── verify_callback.hpp │ │ │ │ │ └── write_op.hpp │ │ │ │ ├── error.hpp │ │ │ │ ├── host_name_verification.hpp │ │ │ │ ├── impl │ │ │ │ │ ├── context.hpp │ │ │ │ │ ├── context.ipp │ │ │ │ │ ├── error.ipp │ │ │ │ │ ├── host_name_verification.ipp │ │ │ │ │ ├── rfc2818_verification.ipp │ │ │ │ │ └── src.hpp │ │ │ │ ├── rfc2818_verification.hpp │ │ │ │ ├── stream.hpp │ │ │ │ ├── stream_base.hpp │ │ │ │ ├── verify_context.hpp │ │ │ │ └── verify_mode.hpp │ │ │ │ ├── static_thread_pool.hpp │ │ │ │ ├── steady_timer.hpp │ │ │ │ ├── strand.hpp │ │ │ │ ├── streambuf.hpp │ │ │ │ ├── system_context.hpp │ │ │ │ ├── system_error.hpp │ │ │ │ ├── system_executor.hpp │ │ │ │ ├── system_timer.hpp │ │ │ │ ├── this_coro.hpp │ │ │ │ ├── thread.hpp │ │ │ │ ├── thread_pool.hpp │ │ │ │ ├── time_traits.hpp │ │ │ │ ├── traits │ │ │ │ ├── bulk_execute_free.hpp │ │ │ │ ├── bulk_execute_member.hpp │ │ │ │ ├── connect_free.hpp │ │ │ │ ├── connect_member.hpp │ │ │ │ ├── equality_comparable.hpp │ │ │ │ ├── execute_free.hpp │ │ │ │ ├── execute_member.hpp │ │ │ │ ├── prefer_free.hpp │ │ │ │ ├── prefer_member.hpp │ │ │ │ ├── query_free.hpp │ │ │ │ ├── query_member.hpp │ │ │ │ ├── query_static_constexpr_member.hpp │ │ │ │ ├── require_concept_free.hpp │ │ │ │ ├── require_concept_member.hpp │ │ │ │ ├── require_free.hpp │ │ │ │ ├── require_member.hpp │ │ │ │ ├── schedule_free.hpp │ │ │ │ ├── schedule_member.hpp │ │ │ │ ├── set_done_free.hpp │ │ │ │ ├── set_done_member.hpp │ │ │ │ ├── set_error_free.hpp │ │ │ │ ├── set_error_member.hpp │ │ │ │ ├── set_value_free.hpp │ │ │ │ ├── set_value_member.hpp │ │ │ │ ├── start_free.hpp │ │ │ │ ├── start_member.hpp │ │ │ │ ├── static_query.hpp │ │ │ │ ├── static_require.hpp │ │ │ │ ├── static_require_concept.hpp │ │ │ │ ├── submit_free.hpp │ │ │ │ └── submit_member.hpp │ │ │ │ ├── ts │ │ │ │ ├── buffer.hpp │ │ │ │ ├── executor.hpp │ │ │ │ ├── internet.hpp │ │ │ │ ├── io_context.hpp │ │ │ │ ├── net.hpp │ │ │ │ ├── netfwd.hpp │ │ │ │ ├── socket.hpp │ │ │ │ └── timer.hpp │ │ │ │ ├── unyield.hpp │ │ │ │ ├── use_awaitable.hpp │ │ │ │ ├── use_future.hpp │ │ │ │ ├── uses_executor.hpp │ │ │ │ ├── version.hpp │ │ │ │ ├── wait_traits.hpp │ │ │ │ ├── windows │ │ │ │ ├── basic_object_handle.hpp │ │ │ │ ├── basic_overlapped_handle.hpp │ │ │ │ ├── basic_random_access_handle.hpp │ │ │ │ ├── basic_stream_handle.hpp │ │ │ │ ├── object_handle.hpp │ │ │ │ ├── overlapped_handle.hpp │ │ │ │ ├── overlapped_ptr.hpp │ │ │ │ ├── random_access_handle.hpp │ │ │ │ └── stream_handle.hpp │ │ │ │ ├── write.hpp │ │ │ │ ├── write_at.hpp │ │ │ │ └── yield.hpp │ │ ├── ffi │ │ │ ├── Android │ │ │ │ ├── arm64-v8a │ │ │ │ │ ├── ffi.h │ │ │ │ │ ├── fficonfig.h │ │ │ │ │ └── ffitarget.h │ │ │ │ └── armeabi-v7a │ │ │ │ │ ├── ffi.h │ │ │ │ │ ├── fficonfig.h │ │ │ │ │ └── ffitarget.h │ │ │ ├── Win64 │ │ │ │ ├── ffi.h │ │ │ │ ├── fficonfig.h │ │ │ │ └── ffitarget.h │ │ │ ├── iOS │ │ │ │ ├── ffi.h │ │ │ │ ├── ffi_arm64.h │ │ │ │ ├── ffitarget.h │ │ │ │ └── ffitarget_arm64.h │ │ │ └── macOS │ │ │ │ ├── ffi.h │ │ │ │ └── ffitarget.h │ │ └── websocketpp │ │ │ └── websocketpp │ │ │ ├── CMakeLists.txt │ │ │ ├── base64 │ │ │ └── base64.hpp │ │ │ ├── client.hpp │ │ │ ├── close.hpp │ │ │ ├── common │ │ │ ├── asio.hpp │ │ │ ├── asio_ssl.hpp │ │ │ ├── chrono.hpp │ │ │ ├── connection_hdl.hpp │ │ │ ├── cpp11.hpp │ │ │ ├── functional.hpp │ │ │ ├── md5.hpp │ │ │ ├── memory.hpp │ │ │ ├── network.hpp │ │ │ ├── platforms.hpp │ │ │ ├── random.hpp │ │ │ ├── regex.hpp │ │ │ ├── stdint.hpp │ │ │ ├── system_error.hpp │ │ │ ├── thread.hpp │ │ │ ├── time.hpp │ │ │ └── type_traits.hpp │ │ │ ├── concurrency │ │ │ ├── basic.hpp │ │ │ └── none.hpp │ │ │ ├── config │ │ │ ├── asio.hpp │ │ │ ├── asio_client.hpp │ │ │ ├── asio_no_tls.hpp │ │ │ ├── asio_no_tls_client.hpp │ │ │ ├── boost_config.hpp │ │ │ ├── core.hpp │ │ │ ├── core_client.hpp │ │ │ ├── debug.hpp │ │ │ ├── debug_asio.hpp │ │ │ ├── debug_asio_no_tls.hpp │ │ │ ├── minimal_client.hpp │ │ │ └── minimal_server.hpp │ │ │ ├── connection.hpp │ │ │ ├── connection_base.hpp │ │ │ ├── endpoint.hpp │ │ │ ├── endpoint_base.hpp │ │ │ ├── error.hpp │ │ │ ├── extensions │ │ │ ├── extension.hpp │ │ │ └── permessage_deflate │ │ │ │ ├── disabled.hpp │ │ │ │ └── enabled.hpp │ │ │ ├── frame.hpp │ │ │ ├── http │ │ │ ├── constants.hpp │ │ │ ├── impl │ │ │ │ ├── parser.hpp │ │ │ │ ├── request.hpp │ │ │ │ └── response.hpp │ │ │ ├── parser.hpp │ │ │ ├── request.hpp │ │ │ └── response.hpp │ │ │ ├── impl │ │ │ ├── connection_impl.hpp │ │ │ ├── endpoint_impl.hpp │ │ │ └── utilities_impl.hpp │ │ │ ├── logger │ │ │ ├── basic.hpp │ │ │ ├── levels.hpp │ │ │ ├── stub.hpp │ │ │ └── syslog.hpp │ │ │ ├── message_buffer │ │ │ ├── alloc.hpp │ │ │ ├── message.hpp │ │ │ └── pool.hpp │ │ │ ├── processors │ │ │ ├── base.hpp │ │ │ ├── hybi00.hpp │ │ │ ├── hybi07.hpp │ │ │ ├── hybi08.hpp │ │ │ ├── hybi13.hpp │ │ │ └── processor.hpp │ │ │ ├── random │ │ │ ├── none.hpp │ │ │ └── random_device.hpp │ │ │ ├── roles │ │ │ ├── client_endpoint.hpp │ │ │ └── server_endpoint.hpp │ │ │ ├── server.hpp │ │ │ ├── sha1 │ │ │ └── sha1.hpp │ │ │ ├── transport │ │ │ ├── asio │ │ │ │ ├── base.hpp │ │ │ │ ├── connection.hpp │ │ │ │ ├── endpoint.hpp │ │ │ │ └── security │ │ │ │ │ ├── base.hpp │ │ │ │ │ ├── none.hpp │ │ │ │ │ └── tls.hpp │ │ │ ├── base │ │ │ │ ├── connection.hpp │ │ │ │ └── endpoint.hpp │ │ │ ├── debug │ │ │ │ ├── base.hpp │ │ │ │ ├── connection.hpp │ │ │ │ └── endpoint.hpp │ │ │ ├── iostream │ │ │ │ ├── base.hpp │ │ │ │ ├── connection.hpp │ │ │ │ └── endpoint.hpp │ │ │ └── stub │ │ │ │ ├── base.hpp │ │ │ │ ├── connection.hpp │ │ │ │ └── endpoint.hpp │ │ │ ├── uri.hpp │ │ │ ├── utf8_validator.hpp │ │ │ ├── utilities.hpp │ │ │ └── version.hpp │ ├── Libnode_APL.xml │ └── Library │ │ └── ffi │ │ ├── Android │ │ ├── arm64-v8a │ │ │ └── libffi.a │ │ └── armeabi-v7a │ │ │ └── libffi.a │ │ ├── Win64 │ │ └── ffi.lib │ │ ├── iOS │ │ └── libffi.a │ │ └── macOS │ │ └── libffi.a ├── Typing │ ├── ffi │ │ └── index.d.ts │ ├── puerts │ │ └── index.d.ts │ └── ue │ │ ├── index.d.ts │ │ ├── puerts.d.ts │ │ └── puerts_decorators.d.ts ├── enable_puerts_module.js ├── gen_pesapi_adpt.js └── make_puerts_libs.js └── README.md /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/others.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/.github/ISSUE_TEMPLATE/others.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/unity-bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/.github/ISSUE_TEMPLATE/unity-bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/unreal-bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/.github/ISSUE_TEMPLATE/unreal-bug.yml -------------------------------------------------------------------------------- /.github/workflows/build_nuget.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/.github/workflows/build_nuget.yml -------------------------------------------------------------------------------- /.github/workflows/clang-format-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/.github/workflows/clang-format-check.yml -------------------------------------------------------------------------------- /.github/workflows/cnb_sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/.github/workflows/cnb_sync.yml -------------------------------------------------------------------------------- /.github/workflows/composites/unity-setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/.github/workflows/composites/unity-setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/run_android_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/.github/workflows/run_android_test.sh -------------------------------------------------------------------------------- /.github/workflows/unity_build_plugins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/.github/workflows/unity_build_plugins.yml -------------------------------------------------------------------------------- /.github/workflows/unity_build_plugins_custom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/.github/workflows/unity_build_plugins_custom.yml -------------------------------------------------------------------------------- /.github/workflows/unity_openupm_publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/.github/workflows/unity_openupm_publish.yml -------------------------------------------------------------------------------- /.github/workflows/unity_publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/.github/workflows/unity_publish.yml -------------------------------------------------------------------------------- /.github/workflows/unity_unittest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/.github/workflows/unity_unittest.yml -------------------------------------------------------------------------------- /.github/workflows/unreal_ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/.github/workflows/unreal_ci.yml -------------------------------------------------------------------------------- /.github/workflows/unreal_publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/.github/workflows/unreal_publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/README.md -------------------------------------------------------------------------------- /doc/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/faq.md -------------------------------------------------------------------------------- /doc/pic/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/pic/1.png -------------------------------------------------------------------------------- /doc/pic/puerts_conf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/pic/puerts_conf.png -------------------------------------------------------------------------------- /doc/pic/puerts_debugger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/pic/puerts_debugger.png -------------------------------------------------------------------------------- /doc/pic/puerts_gen_dts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/pic/puerts_gen_dts.png -------------------------------------------------------------------------------- /doc/pic/puerts_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/pic/puerts_logo.png -------------------------------------------------------------------------------- /doc/pic/puerts_module_dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/pic/puerts_module_dependencies.png -------------------------------------------------------------------------------- /doc/pic/select_character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/pic/select_character.png -------------------------------------------------------------------------------- /doc/pic/ue_throttle_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/pic/ue_throttle_cpu.png -------------------------------------------------------------------------------- /doc/pic/unity_run_in_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/pic/unity_run_in_background.png -------------------------------------------------------------------------------- /doc/unity/en/bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/en/bugs.md -------------------------------------------------------------------------------- /doc/unity/en/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/en/faq.md -------------------------------------------------------------------------------- /doc/unity/en/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/en/install.md -------------------------------------------------------------------------------- /doc/unity/en/knowjs/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/en/knowjs/debugging.md -------------------------------------------------------------------------------- /doc/unity/en/knowjs/module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/en/knowjs/module.md -------------------------------------------------------------------------------- /doc/unity/en/knowjs/typescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/en/knowjs/typescript.md -------------------------------------------------------------------------------- /doc/unity/en/knowjs/webgl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/en/knowjs/webgl.md -------------------------------------------------------------------------------- /doc/unity/en/other/building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/en/other/building.md -------------------------------------------------------------------------------- /doc/unity/en/other/commercial.md: -------------------------------------------------------------------------------- 1 | Comming soon. -------------------------------------------------------------------------------- /doc/unity/en/other/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/en/other/community.md -------------------------------------------------------------------------------- /doc/unity/en/other/dotnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/en/other/dotnet.md -------------------------------------------------------------------------------- /doc/unity/en/other/upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/en/other/upgrade.md -------------------------------------------------------------------------------- /doc/unity/en/performance/il2cpp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/en/performance/il2cpp.md -------------------------------------------------------------------------------- /doc/unity/en/performance/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/en/performance/index.md -------------------------------------------------------------------------------- /doc/unity/en/tutorial/cs2js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/en/tutorial/cs2js.md -------------------------------------------------------------------------------- /doc/unity/en/tutorial/js2cs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/en/tutorial/js2cs.md -------------------------------------------------------------------------------- /doc/unity/en/tutorial/runJS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/en/tutorial/runJS.md -------------------------------------------------------------------------------- /doc/unity/en/tutorial/wxMinigame.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/en/tutorial/wxMinigame.md -------------------------------------------------------------------------------- /doc/unity/en/wrapper/all_attribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/en/wrapper/all_attribute.md -------------------------------------------------------------------------------- /doc/unity/en/wrapper/blittablecopy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/en/wrapper/blittablecopy.md -------------------------------------------------------------------------------- /doc/unity/en/wrapper/extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/en/wrapper/extension.md -------------------------------------------------------------------------------- /doc/unity/en/wrapper/filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/en/wrapper/filter.md -------------------------------------------------------------------------------- /doc/unity/en/wrapper/wrapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/en/wrapper/wrapper.md -------------------------------------------------------------------------------- /doc/unity/zhcn/bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/zhcn/bugs.md -------------------------------------------------------------------------------- /doc/unity/zhcn/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/zhcn/faq.md -------------------------------------------------------------------------------- /doc/unity/zhcn/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/zhcn/install.md -------------------------------------------------------------------------------- /doc/unity/zhcn/knowjs/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/zhcn/knowjs/debugging.md -------------------------------------------------------------------------------- /doc/unity/zhcn/knowjs/module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/zhcn/knowjs/module.md -------------------------------------------------------------------------------- /doc/unity/zhcn/knowjs/typescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/zhcn/knowjs/typescript.md -------------------------------------------------------------------------------- /doc/unity/zhcn/knowjs/webgl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/zhcn/knowjs/webgl.md -------------------------------------------------------------------------------- /doc/unity/zhcn/other/building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/zhcn/other/building.md -------------------------------------------------------------------------------- /doc/unity/zhcn/other/commercial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/zhcn/other/commercial.md -------------------------------------------------------------------------------- /doc/unity/zhcn/other/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/zhcn/other/community.md -------------------------------------------------------------------------------- /doc/unity/zhcn/other/dotnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/zhcn/other/dotnet.md -------------------------------------------------------------------------------- /doc/unity/zhcn/other/upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/zhcn/other/upgrade.md -------------------------------------------------------------------------------- /doc/unity/zhcn/performance/il2cpp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/zhcn/performance/il2cpp.md -------------------------------------------------------------------------------- /doc/unity/zhcn/performance/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/zhcn/performance/index.md -------------------------------------------------------------------------------- /doc/unity/zhcn/tutorial/cs2js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/zhcn/tutorial/cs2js.md -------------------------------------------------------------------------------- /doc/unity/zhcn/tutorial/js2cs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/zhcn/tutorial/js2cs.md -------------------------------------------------------------------------------- /doc/unity/zhcn/tutorial/runJS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/zhcn/tutorial/runJS.md -------------------------------------------------------------------------------- /doc/unity/zhcn/tutorial/wxMinigame.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/zhcn/tutorial/wxMinigame.md -------------------------------------------------------------------------------- /doc/unity/zhcn/wrapper/all_attribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/zhcn/wrapper/all_attribute.md -------------------------------------------------------------------------------- /doc/unity/zhcn/wrapper/blittablecopy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/zhcn/wrapper/blittablecopy.md -------------------------------------------------------------------------------- /doc/unity/zhcn/wrapper/extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/zhcn/wrapper/extension.md -------------------------------------------------------------------------------- /doc/unity/zhcn/wrapper/filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/zhcn/wrapper/filter.md -------------------------------------------------------------------------------- /doc/unity/zhcn/wrapper/wrapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unity/zhcn/wrapper/wrapper.md -------------------------------------------------------------------------------- /doc/unreal/en/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/en/README.md -------------------------------------------------------------------------------- /doc/unreal/en/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/en/changelog.md -------------------------------------------------------------------------------- /doc/unreal/en/demos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/en/demos.md -------------------------------------------------------------------------------- /doc/unreal/en/dev_environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/en/dev_environment.md -------------------------------------------------------------------------------- /doc/unreal/en/engine_call_script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/en/engine_call_script.md -------------------------------------------------------------------------------- /doc/unreal/en/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/en/faq.md -------------------------------------------------------------------------------- /doc/unreal/en/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/en/getting_started.md -------------------------------------------------------------------------------- /doc/unreal/en/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/en/install.md -------------------------------------------------------------------------------- /doc/unreal/en/manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/en/manual.md -------------------------------------------------------------------------------- /doc/unreal/en/mixin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/en/mixin.md -------------------------------------------------------------------------------- /doc/unreal/en/script_call_uclass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/en/script_call_uclass.md -------------------------------------------------------------------------------- /doc/unreal/en/start_a_virtual_machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/en/start_a_virtual_machine.md -------------------------------------------------------------------------------- /doc/unreal/en/template_binding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/en/template_binding.md -------------------------------------------------------------------------------- /doc/unreal/en/uclass_extends.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/en/uclass_extends.md -------------------------------------------------------------------------------- /doc/unreal/en/vscode_debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/en/vscode_debug.md -------------------------------------------------------------------------------- /doc/unreal/zhcn/bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/zhcn/bugs.md -------------------------------------------------------------------------------- /doc/unreal/zhcn/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/zhcn/changelog.md -------------------------------------------------------------------------------- /doc/unreal/zhcn/demos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/zhcn/demos.md -------------------------------------------------------------------------------- /doc/unreal/zhcn/dev_environment.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/unreal/zhcn/engine_call_script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/zhcn/engine_call_script.md -------------------------------------------------------------------------------- /doc/unreal/zhcn/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/zhcn/faq.md -------------------------------------------------------------------------------- /doc/unreal/zhcn/getting_started.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/unreal/zhcn/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/zhcn/install.md -------------------------------------------------------------------------------- /doc/unreal/zhcn/manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/zhcn/manual.md -------------------------------------------------------------------------------- /doc/unreal/zhcn/mixin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/zhcn/mixin.md -------------------------------------------------------------------------------- /doc/unreal/zhcn/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/zhcn/readme.md -------------------------------------------------------------------------------- /doc/unreal/zhcn/script_call_uclass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/zhcn/script_call_uclass.md -------------------------------------------------------------------------------- /doc/unreal/zhcn/start_a_virtual_machine.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/unreal/zhcn/template_binding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/zhcn/template_binding.md -------------------------------------------------------------------------------- /doc/unreal/zhcn/uclass_extends.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/zhcn/uclass_extends.md -------------------------------------------------------------------------------- /doc/unreal/zhcn/vscode_debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/zhcn/vscode_debug.md -------------------------------------------------------------------------------- /doc/unreal/zhcn/wasm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/doc/unreal/zhcn/wasm.md -------------------------------------------------------------------------------- /unity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/.gitignore -------------------------------------------------------------------------------- /unity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/README.md -------------------------------------------------------------------------------- /unity/cli/backend.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/cli/backend.mjs -------------------------------------------------------------------------------- /unity/cli/backends.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/cli/backends.json -------------------------------------------------------------------------------- /unity/cli/cmd.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/cli/cmd.mjs -------------------------------------------------------------------------------- /unity/cli/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/cli/index.js -------------------------------------------------------------------------------- /unity/cli/make.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/cli/make.mjs -------------------------------------------------------------------------------- /unity/cli/test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/cli/test.mjs -------------------------------------------------------------------------------- /unity/native/EASTL/include/EABase/config/eacompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EABase/config/eacompiler.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EABase/config/eaplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EABase/config/eaplatform.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EABase/eabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EABase/eabase.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EABase/eadeprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EABase/eadeprecated.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EABase/eahave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EABase/eahave.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EABase/earesult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EABase/earesult.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EABase/eastdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EABase/eastdarg.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EABase/eaunits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EABase/eaunits.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EABase/int128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EABase/int128.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EABase/nullptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EABase/nullptr.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EABase/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EABase/version.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/algorithm.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/allocator.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/allocator_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/allocator_malloc.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/any.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/array.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/atomic.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/bit.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/bitset.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/bitvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/bitvector.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/bonus/adaptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/bonus/adaptors.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/bonus/call_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/bonus/call_traits.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/bonus/list_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/bonus/list_map.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/bonus/lru_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/bonus/lru_cache.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/bonus/overloaded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/bonus/overloaded.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/bonus/ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/bonus/ring_buffer.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/bonus/sort_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/bonus/sort_extra.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/bonus/tuple_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/bonus/tuple_vector.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/chrono.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/compare.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/core_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/core_allocator.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/deque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/deque.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/finally.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/finally.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/fixed_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/fixed_allocator.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/fixed_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/fixed_function.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/fixed_hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/fixed_hash_map.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/fixed_hash_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/fixed_hash_set.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/fixed_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/fixed_list.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/fixed_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/fixed_map.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/fixed_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/fixed_set.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/fixed_slist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/fixed_slist.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/fixed_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/fixed_string.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/fixed_substring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/fixed_substring.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/fixed_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/fixed_vector.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/functional.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/hash_map.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/hash_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/hash_set.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/heap.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/initializer_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/initializer_list.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/internal/concepts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/internal/concepts.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/internal/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/internal/config.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/internal/copy_help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/internal/copy_help.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/internal/fill_help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/internal/fill_help.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/internal/fixed_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/internal/fixed_pool.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/internal/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/internal/function.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/internal/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/internal/hashtable.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/internal/in_place_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/internal/in_place_t.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/internal/mem_fn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/internal/mem_fn.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/internal/move_help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/internal/move_help.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/internal/smart_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/internal/smart_ptr.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/internal/type_pod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/internal/type_pod.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/intrusive_hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/intrusive_hash_map.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/intrusive_hash_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/intrusive_hash_set.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/intrusive_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/intrusive_list.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/intrusive_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/intrusive_ptr.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/iterator.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/linked_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/linked_array.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/linked_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/linked_ptr.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/list.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/map.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/memory.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/meta.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/numeric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/numeric.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/numeric_limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/numeric_limits.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/optional.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/priority_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/priority_queue.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/queue.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/random.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/ratio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/ratio.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/safe_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/safe_ptr.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/scoped_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/scoped_array.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/scoped_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/scoped_ptr.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/segmented_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/segmented_vector.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/set.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/shared_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/shared_array.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/shared_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/shared_ptr.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/slist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/slist.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/sort.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/span.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/stack.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/string.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/string_hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/string_hash_map.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/string_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/string_map.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/string_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/string_view.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/tuple.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/type_traits.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/unique_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/unique_ptr.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/unordered_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/unordered_map.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/unordered_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/unordered_set.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/utility.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/variant.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/vector.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/vector_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/vector_map.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/vector_multimap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/vector_multimap.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/vector_multiset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/vector_multiset.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/vector_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/vector_set.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/version.h -------------------------------------------------------------------------------- /unity/native/EASTL/include/EASTL/weak_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/include/EASTL/weak_ptr.h -------------------------------------------------------------------------------- /unity/native/EASTL/source/allocator_eastl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/source/allocator_eastl.cpp -------------------------------------------------------------------------------- /unity/native/EASTL/source/assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/source/assert.cpp -------------------------------------------------------------------------------- /unity/native/EASTL/source/atomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/source/atomic.cpp -------------------------------------------------------------------------------- /unity/native/EASTL/source/fixed_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/source/fixed_pool.cpp -------------------------------------------------------------------------------- /unity/native/EASTL/source/hashtable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/source/hashtable.cpp -------------------------------------------------------------------------------- /unity/native/EASTL/source/intrusive_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/source/intrusive_list.cpp -------------------------------------------------------------------------------- /unity/native/EASTL/source/numeric_limits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/source/numeric_limits.cpp -------------------------------------------------------------------------------- /unity/native/EASTL/source/red_black_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/source/red_black_tree.cpp -------------------------------------------------------------------------------- /unity/native/EASTL/source/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/source/string.cpp -------------------------------------------------------------------------------- /unity/native/EASTL/source/thread_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/EASTL/source/thread_support.cpp -------------------------------------------------------------------------------- /unity/native/cmake/android.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/cmake/android.toolchain.cmake -------------------------------------------------------------------------------- /unity/native/cmake/android.windows.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/cmake/android.windows.toolchain.cmake -------------------------------------------------------------------------------- /unity/native/cmake/iOS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/cmake/iOS.cmake -------------------------------------------------------------------------------- /unity/native/cmake/ios.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/cmake/ios.toolchain.cmake -------------------------------------------------------------------------------- /unity/native/papi-lua/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/CMakeLists.txt -------------------------------------------------------------------------------- /unity/native/papi-lua/include/CppObjectMapperLua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/include/CppObjectMapperLua.h -------------------------------------------------------------------------------- /unity/native/papi-lua/include/ObjectCacheNodeLua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/include/ObjectCacheNodeLua.h -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/Makefile -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/README -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/doc/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/doc/contents.html -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/doc/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/doc/index.css -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/doc/logo.gif -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/doc/lua.1 -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/doc/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/doc/lua.css -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/doc/luac.1 -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/doc/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/doc/manual.css -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/doc/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/doc/manual.html -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/doc/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/doc/readme.html -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/Makefile -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lapi.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lapi.h -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lauxlib.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lauxlib.h -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lbaselib.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lcode.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lcode.h -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lcorolib.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lctype.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lctype.h -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/ldblib.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/ldebug.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/ldebug.h -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/ldo.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/ldo.h -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/ldump.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lfunc.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lfunc.h -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lgc.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lgc.h -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/linit.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/liolib.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/ljumptab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/ljumptab.h -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/llex.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/llex.h -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/llimits.h -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lmathlib.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lmem.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lmem.h -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/loadlib.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lobject.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lobject.h -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lopcodes.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lopcodes.h -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lopnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lopnames.h -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/loslib.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lparser.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lparser.h -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lprefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lprefix.h -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lstate.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lstate.h -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lstring.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lstring.h -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lstrlib.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/ltable.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/ltable.h -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/ltablib.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/ltm.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/ltm.h -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lua.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lua.h -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lua.hpp -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/luac.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/luaconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/luaconf.h.in -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lualib.h -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lundump.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lundump.h -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lutf8lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lutf8lib.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lvm.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lvm.h -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lzio.c -------------------------------------------------------------------------------- /unity/native/papi-lua/lua-5.4.8/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/lua-5.4.8/src/lzio.h -------------------------------------------------------------------------------- /unity/native/papi-lua/make_linux64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/make_linux64.sh -------------------------------------------------------------------------------- /unity/native/papi-lua/make_win64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/make_win64.bat -------------------------------------------------------------------------------- /unity/native/papi-lua/source/CppObjectMapperLua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/source/CppObjectMapperLua.cpp -------------------------------------------------------------------------------- /unity/native/papi-lua/source/PapiExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/source/PapiExport.cpp -------------------------------------------------------------------------------- /unity/native/papi-lua/source/PesapiLuaImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-lua/source/PesapiLuaImpl.cpp -------------------------------------------------------------------------------- /unity/native/papi-nodejs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-nodejs/CMakeLists.txt -------------------------------------------------------------------------------- /unity/native/papi-nodejs/include/BackendEnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-nodejs/include/BackendEnv.h -------------------------------------------------------------------------------- /unity/native/papi-nodejs/include/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-nodejs/include/Common.h -------------------------------------------------------------------------------- /unity/native/papi-nodejs/include/CommonTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-nodejs/include/CommonTypes.h -------------------------------------------------------------------------------- /unity/native/papi-nodejs/include/CppObjectMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-nodejs/include/CppObjectMapper.h -------------------------------------------------------------------------------- /unity/native/papi-nodejs/include/DataTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-nodejs/include/DataTransfer.h -------------------------------------------------------------------------------- /unity/native/papi-nodejs/include/JSEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-nodejs/include/JSEngine.h -------------------------------------------------------------------------------- /unity/native/papi-nodejs/include/NamespaceDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-nodejs/include/NamespaceDef.h -------------------------------------------------------------------------------- /unity/native/papi-nodejs/include/ObjectCacheNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-nodejs/include/ObjectCacheNode.h -------------------------------------------------------------------------------- /unity/native/papi-nodejs/include/ObjectMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-nodejs/include/ObjectMapper.h -------------------------------------------------------------------------------- /unity/native/papi-nodejs/include/PuertsNamespaceDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-nodejs/include/PuertsNamespaceDef.h -------------------------------------------------------------------------------- /unity/native/papi-nodejs/include/TypeInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-nodejs/include/TypeInfo.hpp -------------------------------------------------------------------------------- /unity/native/papi-nodejs/include/V8Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-nodejs/include/V8Utils.h -------------------------------------------------------------------------------- /unity/native/papi-nodejs/source/BackendEnv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-nodejs/source/BackendEnv.cpp -------------------------------------------------------------------------------- /unity/native/papi-nodejs/source/CppObjectMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-nodejs/source/CppObjectMapper.cpp -------------------------------------------------------------------------------- /unity/native/papi-nodejs/source/DataTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-nodejs/source/DataTransfer.cpp -------------------------------------------------------------------------------- /unity/native/papi-nodejs/source/JSEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-nodejs/source/JSEngine.cpp -------------------------------------------------------------------------------- /unity/native/papi-nodejs/source/PapiExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-nodejs/source/PapiExport.cpp -------------------------------------------------------------------------------- /unity/native/papi-nodejs/source/PesapiV8Impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-nodejs/source/PesapiV8Impl.cpp -------------------------------------------------------------------------------- /unity/native/papi-python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-python/CMakeLists.txt -------------------------------------------------------------------------------- /unity/native/papi-python/include/PapiData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-python/include/PapiData.h -------------------------------------------------------------------------------- /unity/native/papi-python/source/PapiExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-python/source/PapiExport.cpp -------------------------------------------------------------------------------- /unity/native/papi-python/source/PapiPythonImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-python/source/PapiPythonImpl.cpp -------------------------------------------------------------------------------- /unity/native/papi-python/test/papi_py_base_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-python/test/papi_py_base_test.cpp -------------------------------------------------------------------------------- /unity/native/papi-quickjs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-quickjs/CMakeLists.txt -------------------------------------------------------------------------------- /unity/native/papi-quickjs/include/BackendEnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-quickjs/include/BackendEnv.h -------------------------------------------------------------------------------- /unity/native/papi-quickjs/include/PapiData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-quickjs/include/PapiData.h -------------------------------------------------------------------------------- /unity/native/papi-quickjs/make_linux64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-quickjs/make_linux64.sh -------------------------------------------------------------------------------- /unity/native/papi-quickjs/make_win64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-quickjs/make_win64.bat -------------------------------------------------------------------------------- /unity/native/papi-quickjs/quickjs/_VERSION: -------------------------------------------------------------------------------- 1 | 2020-11-08 2 | -------------------------------------------------------------------------------- /unity/native/papi-quickjs/quickjs/cutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-quickjs/quickjs/cutils.c -------------------------------------------------------------------------------- /unity/native/papi-quickjs/quickjs/cutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-quickjs/quickjs/cutils.h -------------------------------------------------------------------------------- /unity/native/papi-quickjs/quickjs/libbf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-quickjs/quickjs/libbf.c -------------------------------------------------------------------------------- /unity/native/papi-quickjs/quickjs/libbf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-quickjs/quickjs/libbf.h -------------------------------------------------------------------------------- /unity/native/papi-quickjs/quickjs/libregexp-opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-quickjs/quickjs/libregexp-opcode.h -------------------------------------------------------------------------------- /unity/native/papi-quickjs/quickjs/libregexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-quickjs/quickjs/libregexp.c -------------------------------------------------------------------------------- /unity/native/papi-quickjs/quickjs/libregexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-quickjs/quickjs/libregexp.h -------------------------------------------------------------------------------- /unity/native/papi-quickjs/quickjs/libunicode-table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-quickjs/quickjs/libunicode-table.h -------------------------------------------------------------------------------- /unity/native/papi-quickjs/quickjs/libunicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-quickjs/quickjs/libunicode.c -------------------------------------------------------------------------------- /unity/native/papi-quickjs/quickjs/libunicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-quickjs/quickjs/libunicode.h -------------------------------------------------------------------------------- /unity/native/papi-quickjs/quickjs/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-quickjs/quickjs/list.h -------------------------------------------------------------------------------- /unity/native/papi-quickjs/quickjs/quickjs-atom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-quickjs/quickjs/quickjs-atom.h -------------------------------------------------------------------------------- /unity/native/papi-quickjs/quickjs/quickjs-c-atomics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-quickjs/quickjs/quickjs-c-atomics.h -------------------------------------------------------------------------------- /unity/native/papi-quickjs/quickjs/quickjs-opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-quickjs/quickjs/quickjs-opcode.h -------------------------------------------------------------------------------- /unity/native/papi-quickjs/quickjs/quickjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-quickjs/quickjs/quickjs.c -------------------------------------------------------------------------------- /unity/native/papi-quickjs/quickjs/quickjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-quickjs/quickjs/quickjs.h -------------------------------------------------------------------------------- /unity/native/papi-quickjs/quickjs/unicode_gen_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-quickjs/quickjs/unicode_gen_def.h -------------------------------------------------------------------------------- /unity/native/papi-quickjs/source/BackendEnv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-quickjs/source/BackendEnv.cpp -------------------------------------------------------------------------------- /unity/native/papi-quickjs/source/PapiExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-quickjs/source/PapiExport.cpp -------------------------------------------------------------------------------- /unity/native/papi-quickjs/source/PapiQuickjsImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-quickjs/source/PapiQuickjsImpl.cpp -------------------------------------------------------------------------------- /unity/native/papi-v8/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-v8/CMakeLists.txt -------------------------------------------------------------------------------- /unity/native/papi-v8/include/BackendEnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-v8/include/BackendEnv.h -------------------------------------------------------------------------------- /unity/native/papi-v8/include/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-v8/include/Common.h -------------------------------------------------------------------------------- /unity/native/papi-v8/include/CommonTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-v8/include/CommonTypes.h -------------------------------------------------------------------------------- /unity/native/papi-v8/include/CppObjectMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-v8/include/CppObjectMapper.h -------------------------------------------------------------------------------- /unity/native/papi-v8/include/DataTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-v8/include/DataTransfer.h -------------------------------------------------------------------------------- /unity/native/papi-v8/include/JSEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-v8/include/JSEngine.h -------------------------------------------------------------------------------- /unity/native/papi-v8/include/NamespaceDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-v8/include/NamespaceDef.h -------------------------------------------------------------------------------- /unity/native/papi-v8/include/ObjectCacheNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-v8/include/ObjectCacheNode.h -------------------------------------------------------------------------------- /unity/native/papi-v8/include/ObjectMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-v8/include/ObjectMapper.h -------------------------------------------------------------------------------- /unity/native/papi-v8/include/PuertsNamespaceDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-v8/include/PuertsNamespaceDef.h -------------------------------------------------------------------------------- /unity/native/papi-v8/include/TypeInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-v8/include/TypeInfo.hpp -------------------------------------------------------------------------------- /unity/native/papi-v8/include/V8Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-v8/include/V8Utils.h -------------------------------------------------------------------------------- /unity/native/papi-v8/make_linux64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-v8/make_linux64.sh -------------------------------------------------------------------------------- /unity/native/papi-v8/make_win64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-v8/make_win64.bat -------------------------------------------------------------------------------- /unity/native/papi-v8/source/BackendEnv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-v8/source/BackendEnv.cpp -------------------------------------------------------------------------------- /unity/native/papi-v8/source/CppObjectMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-v8/source/CppObjectMapper.cpp -------------------------------------------------------------------------------- /unity/native/papi-v8/source/DataTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-v8/source/DataTransfer.cpp -------------------------------------------------------------------------------- /unity/native/papi-v8/source/JSEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-v8/source/JSEngine.cpp -------------------------------------------------------------------------------- /unity/native/papi-v8/source/PapiExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-v8/source/PapiExport.cpp -------------------------------------------------------------------------------- /unity/native/papi-v8/source/PesapiV8Impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/papi-v8/source/PesapiV8Impl.cpp -------------------------------------------------------------------------------- /unity/native/puerts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/puerts/CMakeLists.txt -------------------------------------------------------------------------------- /unity/native/puerts/include/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/puerts/include/Log.h -------------------------------------------------------------------------------- /unity/native/puerts/include/NamespaceDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/puerts/include/NamespaceDef.h -------------------------------------------------------------------------------- /unity/native/puerts/include/PString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/puerts/include/PString.h -------------------------------------------------------------------------------- /unity/native/puerts/include/PuertsNamespaceDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/puerts/include/PuertsNamespaceDef.h -------------------------------------------------------------------------------- /unity/native/puerts/include/ScriptClassRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/puerts/include/ScriptClassRegistry.h -------------------------------------------------------------------------------- /unity/native/puerts/include/TypeInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/puerts/include/TypeInfo.hpp -------------------------------------------------------------------------------- /unity/native/puerts/include/pesapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/puerts/include/pesapi.h -------------------------------------------------------------------------------- /unity/native/puerts/make_linux64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/puerts/make_linux64.sh -------------------------------------------------------------------------------- /unity/native/puerts/source/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/puerts/source/Log.cpp -------------------------------------------------------------------------------- /unity/native/puerts/source/PesapiRegister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/puerts/source/PesapiRegister.cpp -------------------------------------------------------------------------------- /unity/native/puerts/source/Puerts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/puerts/source/Puerts.cpp -------------------------------------------------------------------------------- /unity/native/puerts/source/ScriptClassRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/puerts/source/ScriptClassRegistry.cpp -------------------------------------------------------------------------------- /unity/native/puerts/source/pesapi_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/puerts/source/pesapi_wrap.c -------------------------------------------------------------------------------- /unity/native/wsppaddon/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/wsppaddon/CMakeLists.txt -------------------------------------------------------------------------------- /unity/native/wsppaddon/source/WSPPAddon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/native/wsppaddon/source/WSPPAddon.cpp -------------------------------------------------------------------------------- /unity/nuget/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/nuget/Directory.Build.props -------------------------------------------------------------------------------- /unity/nuget/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/nuget/Directory.Packages.props -------------------------------------------------------------------------------- /unity/nuget/NativeAssets.Common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/nuget/NativeAssets.Common.props -------------------------------------------------------------------------------- /unity/nuget/NugetPackages.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/nuget/NugetPackages.sln -------------------------------------------------------------------------------- /unity/nuget/Puerts.Core/PreserveAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/nuget/Puerts.Core/PreserveAttribute.cs -------------------------------------------------------------------------------- /unity/nuget/Puerts.Core/Puerts.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/nuget/Puerts.Core/Puerts.Core.csproj -------------------------------------------------------------------------------- /unity/nuget/Puerts.Core/build/package.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/nuget/Puerts.Core/build/package.targets -------------------------------------------------------------------------------- /unity/nuget/Puerts.Lua/Puerts.Lua.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/nuget/Puerts.Lua/Puerts.Lua.csproj -------------------------------------------------------------------------------- /unity/nuget/Puerts.NodeJS/Puerts.NodeJS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/nuget/Puerts.NodeJS/Puerts.NodeJS.csproj -------------------------------------------------------------------------------- /unity/nuget/Puerts.Python/Puerts.Python.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/nuget/Puerts.Python/Puerts.Python.csproj -------------------------------------------------------------------------------- /unity/nuget/Puerts.QuickJS/Puerts.QuickJS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/nuget/Puerts.QuickJS/Puerts.QuickJS.csproj -------------------------------------------------------------------------------- /unity/nuget/Puerts.V8/Puerts.V8.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/nuget/Puerts.V8/Puerts.V8.csproj -------------------------------------------------------------------------------- /unity/nuget/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/nuget/README.md -------------------------------------------------------------------------------- /unity/nuget/_MemTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/nuget/_MemTest/Program.cs -------------------------------------------------------------------------------- /unity/nuget/_MemTest/_MemTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/nuget/_MemTest/_MemTest.csproj -------------------------------------------------------------------------------- /unity/nuget/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/nuget/build.ps1 -------------------------------------------------------------------------------- /unity/nuget/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/nuget/build.sh -------------------------------------------------------------------------------- /unity/nuget/build/Build.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/nuget/build/Build.csproj -------------------------------------------------------------------------------- /unity/nuget/build/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/nuget/build/Program.cs -------------------------------------------------------------------------------- /unity/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/package-lock.json -------------------------------------------------------------------------------- /unity/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/package.json -------------------------------------------------------------------------------- /unity/test/Src/Cases/Javascript/API/EvalTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Javascript/API/EvalTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Javascript/API/ForofTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Javascript/API/ForofTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Javascript/API/NodeJSTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Javascript/API/NodeJSTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Javascript/API/TimerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Javascript/API/TimerTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Javascript/API/TypedValueTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Javascript/API/TypedValueTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Javascript/AccessControlTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Javascript/AccessControlTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Javascript/CSharpModuleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Javascript/CSharpModuleTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Javascript/ExceptionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Javascript/ExceptionTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Javascript/LazyWeakCJSTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Javascript/LazyWeakCJSTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Javascript/MultiTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Javascript/MultiTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Javascript/WebsocketTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Javascript/WebsocketTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Lua/API/EvalTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Lua/API/EvalTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Lua/API/ForofTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Lua/API/ForofTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Lua/API/TimerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Lua/API/TimerTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Lua/API/TypedValueTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Lua/API/TypedValueTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Lua/AccessControlTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Lua/AccessControlTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Lua/CSharpModuleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Lua/CSharpModuleTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Lua/CrossLang/CrossLangTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Lua/CrossLang/CrossLangTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Lua/CrossLang/DelegateTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Lua/CrossLang/DelegateTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Lua/CrossLang/GenericTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Lua/CrossLang/GenericTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Lua/ExceptionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Lua/ExceptionTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Python/API/EvalTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Python/API/EvalTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Python/API/ForofTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Python/API/ForofTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Python/API/TimerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Python/API/TimerTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Python/API/TypedValueTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Python/API/TypedValueTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Python/AccessControlTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Python/AccessControlTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Python/CSharpModuleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Python/CSharpModuleTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Python/CrossLang/CrossLangTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Python/CrossLang/CrossLangTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Python/CrossLang/DelegateTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Python/CrossLang/DelegateTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Python/CrossLang/GenericTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Python/CrossLang/GenericTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Python/ExceptionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Python/ExceptionTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Python/NestedTypesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Python/NestedTypesTest.cs -------------------------------------------------------------------------------- /unity/test/Src/Cases/Python/NestedTypesTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Cases/Python/NestedTypesTest.cs.meta -------------------------------------------------------------------------------- /unity/test/Src/Resources/CSharpModuleTest/empty.mjs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unity/test/Src/Resources/a_cjs.cjs: -------------------------------------------------------------------------------- 1 | exports["default"] = 'hello world'; 2 | -------------------------------------------------------------------------------- /unity/test/Src/Resources/a_mjs.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Resources/a_mjs.mjs -------------------------------------------------------------------------------- /unity/test/Src/Resources/bootstrap_test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Resources/bootstrap_test.mjs -------------------------------------------------------------------------------- /unity/test/Src/Resources/circular_m1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Resources/circular_m1.cjs -------------------------------------------------------------------------------- /unity/test/Src/Resources/circular_m2.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Resources/circular_m2.cjs -------------------------------------------------------------------------------- /unity/test/Src/Resources/cjs/whatever.cjs: -------------------------------------------------------------------------------- 1 | exports["default"] = 'hello world'; 2 | -------------------------------------------------------------------------------- /unity/test/Src/Resources/eval-error/whatever.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Resources/eval-error/whatever.mjs -------------------------------------------------------------------------------- /unity/test/Src/Resources/import-circular/main.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Resources/import-circular/main.mjs -------------------------------------------------------------------------------- /unity/test/Src/Resources/import-circular/module1.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Resources/import-circular/module1.mjs -------------------------------------------------------------------------------- /unity/test/Src/Resources/import-circular/module2.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Resources/import-circular/module2.mjs -------------------------------------------------------------------------------- /unity/test/Src/Resources/import-eval-error/entry.mjs: -------------------------------------------------------------------------------- 1 | import './whatever.mjs' -------------------------------------------------------------------------------- /unity/test/Src/Resources/import-not-relative/main.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Resources/import-not-relative/main.mjs -------------------------------------------------------------------------------- /unity/test/Src/Resources/import-not-relative/module2.mjs: -------------------------------------------------------------------------------- 1 | const M2 = 'M2'; 2 | export { M2 }; -------------------------------------------------------------------------------- /unity/test/Src/Resources/import-package/index.js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Resources/import-package/index.js.txt -------------------------------------------------------------------------------- /unity/test/Src/Resources/import-package/lib.js.txt: -------------------------------------------------------------------------------- 1 | export default 'lib in package' 2 | -------------------------------------------------------------------------------- /unity/test/Src/Resources/import-relative/a/entry.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Resources/import-relative/a/entry.mjs -------------------------------------------------------------------------------- /unity/test/Src/Resources/import-relative/b/whatever.mjs: -------------------------------------------------------------------------------- 1 | export const str = 'hello' -------------------------------------------------------------------------------- /unity/test/Src/Resources/lazymodule.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Resources/lazymodule.cjs -------------------------------------------------------------------------------- /unity/test/Src/Resources/lazymodule1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Resources/lazymodule1.cjs -------------------------------------------------------------------------------- /unity/test/Src/Resources/lazymodule2.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Resources/lazymodule2.cjs -------------------------------------------------------------------------------- /unity/test/Src/Resources/mjs/whatever.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/Resources/mjs/whatever.mjs -------------------------------------------------------------------------------- /unity/test/Src/Resources/notfound/entry.mjs: -------------------------------------------------------------------------------- 1 | import './whatever.mjs' -------------------------------------------------------------------------------- /unity/test/Src/TestFramework/Src/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/TestFramework/Src/Attributes.cs -------------------------------------------------------------------------------- /unity/test/Src/UnitTestEnv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/UnitTestEnv.cs -------------------------------------------------------------------------------- /unity/test/Src/UnitTestLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/UnitTestLoader.cs -------------------------------------------------------------------------------- /unity/test/Src/com.tencent.puerts.unittest.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/com.tencent.puerts.unittest.asmdef -------------------------------------------------------------------------------- /unity/test/Src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/Src/package.json -------------------------------------------------------------------------------- /unity/test/dotnet/Src/Helloworld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/dotnet/Src/Helloworld.cs -------------------------------------------------------------------------------- /unity/test/dotnet/Src/TxtLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/dotnet/Src/TxtLoader.cs -------------------------------------------------------------------------------- /unity/test/unity/Assets/Editor/PuerCfg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/unity/Assets/Editor/PuerCfg.cs -------------------------------------------------------------------------------- /unity/test/unity/Assets/Editor/PuerCfg.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/unity/Assets/Editor/PuerCfg.cs.meta -------------------------------------------------------------------------------- /unity/test/unity/Assets/Editor/TestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/unity/Assets/Editor/TestBuilder.cs -------------------------------------------------------------------------------- /unity/test/unity/Assets/Editor/TestBuilder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/unity/Assets/Editor/TestBuilder.cs.meta -------------------------------------------------------------------------------- /unity/test/unity/Assets/Resources/BillingMode.json: -------------------------------------------------------------------------------- 1 | {"androidStore":"GooglePlay"} -------------------------------------------------------------------------------- /unity/test/unity/Assets/Scenes/HelloWorld.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/unity/Assets/Scenes/HelloWorld.unity -------------------------------------------------------------------------------- /unity/test/unity/Assets/Scenes/HelloWorld.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/unity/Assets/Scenes/HelloWorld.unity.meta -------------------------------------------------------------------------------- /unity/test/unity/Assets/Scenes/Test.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/unity/Assets/Scenes/Test.unity -------------------------------------------------------------------------------- /unity/test/unity/Assets/Scenes/Test.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/unity/Assets/Scenes/Test.unity.meta -------------------------------------------------------------------------------- /unity/test/unity/Assets/Scripts/HelloWorlder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/unity/Assets/Scripts/HelloWorlder.cs -------------------------------------------------------------------------------- /unity/test/unity/Assets/Scripts/HelloWorlder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/unity/Assets/Scripts/HelloWorlder.cs.meta -------------------------------------------------------------------------------- /unity/test/unity/Assets/Scripts/Tester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/unity/Assets/Scripts/Tester.cs -------------------------------------------------------------------------------- /unity/test/unity/Assets/Scripts/Tester.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/unity/Assets/Scripts/Tester.cs.meta -------------------------------------------------------------------------------- /unity/test/unity/Assets/link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/unity/Assets/link.xml -------------------------------------------------------------------------------- /unity/test/unity/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/unity/Packages/manifest.json -------------------------------------------------------------------------------- /unity/test/unity/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/unity/Packages/packages-lock.json -------------------------------------------------------------------------------- /unity/test/unity/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/unity/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /unity/test/unity/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/unity/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /unity/test/unity/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/unity/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /unity/test/unity/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/unity/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /unity/test/unity/ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/unity/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /unity/test/unity/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/unity/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /unity/test/unity/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/unity/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /unity/test/unity/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/unity/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /unity/test/unity/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/unity/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /unity/test/unity/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/unity/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /unity/test/unity/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/unity/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /unity/test/unity/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/unity/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /unity/test/unity/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/test/unity/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /unity/test/unity/ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unity/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/tsconfig.json -------------------------------------------------------------------------------- /unity/upms/commonjs/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/commonjs/Runtime.meta -------------------------------------------------------------------------------- /unity/upms/commonjs/Runtime/CommonJS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/commonjs/Runtime/CommonJS.cs -------------------------------------------------------------------------------- /unity/upms/commonjs/Runtime/CommonJS.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/commonjs/Runtime/CommonJS.cs.meta -------------------------------------------------------------------------------- /unity/upms/commonjs/Runtime/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/commonjs/Runtime/Resources.meta -------------------------------------------------------------------------------- /unity/upms/commonjs/Samples~/Example.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/commonjs/Samples~/Example.cs -------------------------------------------------------------------------------- /unity/upms/commonjs/Samples~/Example.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/commonjs/Samples~/Example.unity -------------------------------------------------------------------------------- /unity/upms/commonjs/Samples~/Resources/main.js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/commonjs/Samples~/Resources/main.js.txt -------------------------------------------------------------------------------- /unity/upms/commonjs/Samples~/Resources/module1.js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/commonjs/Samples~/Resources/module1.js.txt -------------------------------------------------------------------------------- /unity/upms/commonjs/Typing.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/commonjs/Typing.meta -------------------------------------------------------------------------------- /unity/upms/commonjs/Typing/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/commonjs/Typing/index.d.ts -------------------------------------------------------------------------------- /unity/upms/commonjs/Typing/index.d.ts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/commonjs/Typing/index.d.ts.meta -------------------------------------------------------------------------------- /unity/upms/commonjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/commonjs/package.json -------------------------------------------------------------------------------- /unity/upms/commonjs/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/commonjs/package.json.meta -------------------------------------------------------------------------------- /unity/upms/commonjs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/commonjs/readme.md -------------------------------------------------------------------------------- /unity/upms/commonjs/readme.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/commonjs/readme.md.meta -------------------------------------------------------------------------------- /unity/upms/core/Editor/Src/CJSImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Editor/Src/CJSImporter.cs -------------------------------------------------------------------------------- /unity/upms/core/Editor/Src/Configure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Editor/Src/Configure.cs -------------------------------------------------------------------------------- /unity/upms/core/Editor/Src/DocResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Editor/Src/DocResolver.cs -------------------------------------------------------------------------------- /unity/upms/core/Editor/Src/Generator/DTS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Editor/Src/Generator/DTS.cs -------------------------------------------------------------------------------- /unity/upms/core/Editor/Src/Generator/FAQHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Editor/Src/Generator/FAQHelper.cs -------------------------------------------------------------------------------- /unity/upms/core/Editor/Src/Generator/FileExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Editor/Src/Generator/FileExporter.cs -------------------------------------------------------------------------------- /unity/upms/core/Editor/Src/Generator/RegisterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Editor/Src/Generator/RegisterInfo.cs -------------------------------------------------------------------------------- /unity/upms/core/Editor/Src/Generator/UnityMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Editor/Src/Generator/UnityMenu.cs -------------------------------------------------------------------------------- /unity/upms/core/Editor/Src/Generator/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Editor/Src/Generator/Utils.cs -------------------------------------------------------------------------------- /unity/upms/core/Editor/Src/Generator/Wrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Editor/Src/Generator/Wrapper.cs -------------------------------------------------------------------------------- /unity/upms/core/Editor/Src/LuaImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Editor/Src/LuaImporter.cs -------------------------------------------------------------------------------- /unity/upms/core/Editor/Src/MJSImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Editor/Src/MJSImporter.cs -------------------------------------------------------------------------------- /unity/upms/core/Editor/Src/U2018Compatible.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Editor/Src/U2018Compatible.cs -------------------------------------------------------------------------------- /unity/upms/core/Editor/Src/UnityNodeJS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Editor/Src/UnityNodeJS.cs -------------------------------------------------------------------------------- /unity/upms/core/Editor/Src/iOS/IOSPreprocessorFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Editor/Src/iOS/IOSPreprocessorFix.cs -------------------------------------------------------------------------------- /unity/upms/core/Plugins/WebGL/libPuertsCore.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Plugins/WebGL/libPuertsCore.a.meta -------------------------------------------------------------------------------- /unity/upms/core/Plugins/iOS/libPuertsCore.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Plugins/iOS/libPuertsCore.a.meta -------------------------------------------------------------------------------- /unity/upms/core/Plugins/iOS/libWSPPAddon.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Plugins/iOS/libWSPPAddon.a.meta -------------------------------------------------------------------------------- /unity/upms/core/Plugins/macOS/PuertsCore.bundle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Plugins/macOS/PuertsCore.bundle.meta -------------------------------------------------------------------------------- /unity/upms/core/Plugins/macOS/WSPPAddon.bundle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Plugins/macOS/WSPPAddon.bundle.meta -------------------------------------------------------------------------------- /unity/upms/core/Plugins/x86_64/PuertsCore.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Plugins/x86_64/PuertsCore.dll.meta -------------------------------------------------------------------------------- /unity/upms/core/Plugins/x86_64/WSPPAddon.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Plugins/x86_64/WSPPAddon.dll.meta -------------------------------------------------------------------------------- /unity/upms/core/Plugins/x86_64/libPuertsCore.so.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Plugins/x86_64/libPuertsCore.so.meta -------------------------------------------------------------------------------- /unity/upms/core/Plugins/x86_64/libWSPPAddon.so.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Plugins/x86_64/libWSPPAddon.so.meta -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Resources/puerts/csharp.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Resources/puerts/csharp.mjs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Resources/puerts/dispose.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Resources/puerts/dispose.mjs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Resources/puerts/events.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Resources/puerts/events.mjs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Resources/puerts/init.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Resources/puerts/init.mjs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Resources/puerts/log.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Resources/puerts/log.mjs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Resources/puerts/module.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Resources/puerts/module.mjs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Resources/puerts/nodepatch.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Resources/puerts/nodepatch.mjs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Resources/puerts/polyfill.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Resources/puerts/polyfill.mjs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Resources/puerts/promises.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Resources/puerts/promises.mjs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Resources/puerts/timer.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Resources/puerts/timer.mjs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Src/ArrayBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Src/ArrayBuffer.cs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Src/Backend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Src/Backend.cs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Src/Backends/BackendJs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Src/Backends/BackendJs.cs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Src/IL2Cpp/ArrayExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Src/IL2Cpp/ArrayExtension.cs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Src/IL2Cpp/Native/NativeAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Src/IL2Cpp/Native/NativeAPI.cs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Src/IL2Cpp/ObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Src/IL2Cpp/ObjectPool.cs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Src/IL2Cpp/ScriptEnv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Src/IL2Cpp/ScriptEnv.cs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Src/IL2Cpp/TypeRegister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Src/IL2Cpp/TypeRegister.cs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Src/IL2Cpp/TypeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Src/IL2Cpp/TypeUtils.cs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Src/JsEnv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Src/JsEnv.cs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Src/Loader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Src/Loader.cs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Src/Native/PuertsNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Src/Native/PuertsNative.cs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Src/Native/WSPPAddonNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Src/Native/WSPPAddonNative.cs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Src/PInvoke/ObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Src/PInvoke/ObjectPool.cs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Src/PInvoke/ScriptEnv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Src/PInvoke/ScriptEnv.cs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Src/PInvoke/TypeRegister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Src/PInvoke/TypeRegister.cs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Src/PathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Src/PathHelper.cs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Src/RegisterInfoManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Src/RegisterInfoManager.cs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Src/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Src/TypeExtensions.cs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Src/TypedValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Src/TypedValue.cs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/Src/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/Src/Utils.cs -------------------------------------------------------------------------------- /unity/upms/core/Runtime/com.tencent.puerts.core.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Runtime/com.tencent.puerts.core.asmdef -------------------------------------------------------------------------------- /unity/upms/core/Typing/puerts/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/Typing/puerts/index.d.ts -------------------------------------------------------------------------------- /unity/upms/core/changelog-hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/changelog-hans.md -------------------------------------------------------------------------------- /unity/upms/core/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/changelog.md -------------------------------------------------------------------------------- /unity/upms/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/core/package.json -------------------------------------------------------------------------------- /unity/upms/lua/Plugins/WebGL/libPapiLua.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/lua/Plugins/WebGL/libPapiLua.a.meta -------------------------------------------------------------------------------- /unity/upms/lua/Plugins/iOS/libPapiLua.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/lua/Plugins/iOS/libPapiLua.a.meta -------------------------------------------------------------------------------- /unity/upms/lua/Plugins/macOS/PapiLua.bundle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/lua/Plugins/macOS/PapiLua.bundle.meta -------------------------------------------------------------------------------- /unity/upms/lua/Plugins/x86_64/PapiLua.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/lua/Plugins/x86_64/PapiLua.dll.meta -------------------------------------------------------------------------------- /unity/upms/lua/Plugins/x86_64/libPapiLua.so.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/lua/Plugins/x86_64/libPapiLua.so.meta -------------------------------------------------------------------------------- /unity/upms/lua/Runtime/Src/Backends/BackendLua.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/lua/Runtime/Src/Backends/BackendLua.cs -------------------------------------------------------------------------------- /unity/upms/lua/Runtime/Src/Loaders/LuaLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/lua/Runtime/Src/Loaders/LuaLoader.cs -------------------------------------------------------------------------------- /unity/upms/lua/Runtime/Src/Native/PapiLuaNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/lua/Runtime/Src/Native/PapiLuaNative.cs -------------------------------------------------------------------------------- /unity/upms/lua/Runtime/com.tencent.puerts.lua.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/lua/Runtime/com.tencent.puerts.lua.asmdef -------------------------------------------------------------------------------- /unity/upms/lua/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/lua/package.json -------------------------------------------------------------------------------- /unity/upms/nodejs/Plugins/iOS/libPapiNodejs.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/nodejs/Plugins/iOS/libPapiNodejs.a.meta -------------------------------------------------------------------------------- /unity/upms/nodejs/Plugins/iOS/libbrotli.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/nodejs/Plugins/iOS/libbrotli.a.meta -------------------------------------------------------------------------------- /unity/upms/nodejs/Plugins/iOS/libcares.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/nodejs/Plugins/iOS/libcares.a.meta -------------------------------------------------------------------------------- /unity/upms/nodejs/Plugins/iOS/libhistogram.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/nodejs/Plugins/iOS/libhistogram.a.meta -------------------------------------------------------------------------------- /unity/upms/nodejs/Plugins/iOS/libllhttp.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/nodejs/Plugins/iOS/libllhttp.a.meta -------------------------------------------------------------------------------- /unity/upms/nodejs/Plugins/iOS/libnghttp2.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/nodejs/Plugins/iOS/libnghttp2.a.meta -------------------------------------------------------------------------------- /unity/upms/nodejs/Plugins/iOS/libnode.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/nodejs/Plugins/iOS/libnode.a.meta -------------------------------------------------------------------------------- /unity/upms/nodejs/Plugins/iOS/libnode_stub.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/nodejs/Plugins/iOS/libnode_stub.a.meta -------------------------------------------------------------------------------- /unity/upms/nodejs/Plugins/iOS/libopenssl.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/nodejs/Plugins/iOS/libopenssl.a.meta -------------------------------------------------------------------------------- /unity/upms/nodejs/Plugins/iOS/libuv.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/nodejs/Plugins/iOS/libuv.a.meta -------------------------------------------------------------------------------- /unity/upms/nodejs/Plugins/iOS/libuvwasi.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/nodejs/Plugins/iOS/libuvwasi.a.meta -------------------------------------------------------------------------------- /unity/upms/nodejs/Plugins/iOS/libv8_compiler.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/nodejs/Plugins/iOS/libv8_compiler.a.meta -------------------------------------------------------------------------------- /unity/upms/nodejs/Plugins/iOS/libv8_libbase.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/nodejs/Plugins/iOS/libv8_libbase.a.meta -------------------------------------------------------------------------------- /unity/upms/nodejs/Plugins/iOS/libv8_libplatform.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/nodejs/Plugins/iOS/libv8_libplatform.a.meta -------------------------------------------------------------------------------- /unity/upms/nodejs/Plugins/iOS/libv8_snapshot.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/nodejs/Plugins/iOS/libv8_snapshot.a.meta -------------------------------------------------------------------------------- /unity/upms/nodejs/Plugins/iOS/libv8_zlib.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/nodejs/Plugins/iOS/libv8_zlib.a.meta -------------------------------------------------------------------------------- /unity/upms/nodejs/Plugins/iOS/libzlib.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/nodejs/Plugins/iOS/libzlib.a.meta -------------------------------------------------------------------------------- /unity/upms/nodejs/Plugins/macOS/PapiNodejs.bundle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/nodejs/Plugins/macOS/PapiNodejs.bundle.meta -------------------------------------------------------------------------------- /unity/upms/nodejs/Plugins/x86_64/PapiNodejs.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/nodejs/Plugins/x86_64/PapiNodejs.dll.meta -------------------------------------------------------------------------------- /unity/upms/nodejs/Plugins/x86_64/libPapiNodejs.so.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/nodejs/Plugins/x86_64/libPapiNodejs.so.meta -------------------------------------------------------------------------------- /unity/upms/nodejs/Plugins/x86_64/libnode.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/nodejs/Plugins/x86_64/libnode.dll.meta -------------------------------------------------------------------------------- /unity/upms/nodejs/Plugins/x86_64/libnode.so.93.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/nodejs/Plugins/x86_64/libnode.so.93.meta -------------------------------------------------------------------------------- /unity/upms/nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/nodejs/package.json -------------------------------------------------------------------------------- /unity/upms/python/Plugins/x86_64/PapiPython.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/python/Plugins/x86_64/PapiPython.dll.meta -------------------------------------------------------------------------------- /unity/upms/python/Plugins/x86_64/libPapiPython.so.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/python/Plugins/x86_64/libPapiPython.so.meta -------------------------------------------------------------------------------- /unity/upms/python/Runtime/Src/Loaders/PythonLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/python/Runtime/Src/Loaders/PythonLoader.cs -------------------------------------------------------------------------------- /unity/upms/python/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/python/package.json -------------------------------------------------------------------------------- /unity/upms/quickjs/Plugins/WebGL/libPapiQuickjs.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/quickjs/Plugins/WebGL/libPapiQuickjs.a.meta -------------------------------------------------------------------------------- /unity/upms/quickjs/Plugins/iOS/libPapiQuickjs.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/quickjs/Plugins/iOS/libPapiQuickjs.a.meta -------------------------------------------------------------------------------- /unity/upms/quickjs/Plugins/x86_64/PapiQuickjs.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/quickjs/Plugins/x86_64/PapiQuickjs.dll.meta -------------------------------------------------------------------------------- /unity/upms/quickjs/Runtime/Src/Native/PapiQjsNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/quickjs/Runtime/Src/Native/PapiQjsNative.cs -------------------------------------------------------------------------------- /unity/upms/quickjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/quickjs/package.json -------------------------------------------------------------------------------- /unity/upms/v8/Plugins/iOS/libPapiV8.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/v8/Plugins/iOS/libPapiV8.a.meta -------------------------------------------------------------------------------- /unity/upms/v8/Plugins/iOS/libwee8.a.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/v8/Plugins/iOS/libwee8.a.meta -------------------------------------------------------------------------------- /unity/upms/v8/Plugins/macOS/PapiV8.bundle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/v8/Plugins/macOS/PapiV8.bundle.meta -------------------------------------------------------------------------------- /unity/upms/v8/Plugins/x86_64/PapiV8.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/v8/Plugins/x86_64/PapiV8.dll.meta -------------------------------------------------------------------------------- /unity/upms/v8/Plugins/x86_64/libPapiV8.so.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/v8/Plugins/x86_64/libPapiV8.so.meta -------------------------------------------------------------------------------- /unity/upms/v8/Runtime/Src/Backends/BackendV8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/v8/Runtime/Src/Backends/BackendV8.cs -------------------------------------------------------------------------------- /unity/upms/v8/Runtime/Src/Native/PapiV8Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/v8/Runtime/Src/Native/PapiV8Native.cs -------------------------------------------------------------------------------- /unity/upms/v8/Runtime/com.tencent.puerts.v8.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/v8/Runtime/com.tencent.puerts.v8.asmdef -------------------------------------------------------------------------------- /unity/upms/v8/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/v8/package.json -------------------------------------------------------------------------------- /unity/upms/webgl/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/Changelog.md -------------------------------------------------------------------------------- /unity/upms/webgl/Changelog.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/Changelog.md.meta -------------------------------------------------------------------------------- /unity/upms/webgl/Cli.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/Cli.meta -------------------------------------------------------------------------------- /unity/upms/webgl/Cli/Javascripts~/cmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/Cli/Javascripts~/cmd.js -------------------------------------------------------------------------------- /unity/upms/webgl/Cli/Javascripts~/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/Cli/Javascripts~/index.js -------------------------------------------------------------------------------- /unity/upms/webgl/Cli/Javascripts~/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/Cli/Javascripts~/package.json -------------------------------------------------------------------------------- /unity/upms/webgl/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/Editor.meta -------------------------------------------------------------------------------- /unity/upms/webgl/Editor/PuertsWebglBuildProcessing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/Editor/PuertsWebglBuildProcessing.cs -------------------------------------------------------------------------------- /unity/upms/webgl/Javascripts~/PuertsDLLMock/buffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/Javascripts~/PuertsDLLMock/buffer.ts -------------------------------------------------------------------------------- /unity/upms/webgl/Javascripts~/PuertsDLLMock/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/Javascripts~/PuertsDLLMock/build.js -------------------------------------------------------------------------------- /unity/upms/webgl/Javascripts~/PuertsDLLMock/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/Javascripts~/PuertsDLLMock/index.ts -------------------------------------------------------------------------------- /unity/upms/webgl/Javascripts~/PuertsDLLMock/library.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/Javascripts~/PuertsDLLMock/library.ts -------------------------------------------------------------------------------- /unity/upms/webgl/Javascripts~/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/Javascripts~/package.json -------------------------------------------------------------------------------- /unity/upms/webgl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/LICENSE -------------------------------------------------------------------------------- /unity/upms/webgl/LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/LICENSE.meta -------------------------------------------------------------------------------- /unity/upms/webgl/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/Runtime.meta -------------------------------------------------------------------------------- /unity/upms/webgl/Runtime/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/Runtime/Plugins.meta -------------------------------------------------------------------------------- /unity/upms/webgl/Runtime/Plugins/WebGL.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/Runtime/Plugins/WebGL.meta -------------------------------------------------------------------------------- /unity/upms/webgl/Runtime/Plugins/WebGL/puerts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/Runtime/Plugins/WebGL/puerts.cpp -------------------------------------------------------------------------------- /unity/upms/webgl/Runtime/Plugins/WebGL/puerts.cpp.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/Runtime/Plugins/WebGL/puerts.cpp.meta -------------------------------------------------------------------------------- /unity/upms/webgl/Runtime/Plugins/WebGL/puerts.jslib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/Runtime/Plugins/WebGL/puerts.jslib -------------------------------------------------------------------------------- /unity/upms/webgl/Runtime/Src/Backends/BackendWebGL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/Runtime/Src/Backends/BackendWebGL.cs -------------------------------------------------------------------------------- /unity/upms/webgl/Runtime/Src/Native/PapiWebGLNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/Runtime/Src/Native/PapiWebGLNative.cs -------------------------------------------------------------------------------- /unity/upms/webgl/Runtime/WebGL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/Runtime/WebGL.cs -------------------------------------------------------------------------------- /unity/upms/webgl/Runtime/WebGL.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/Runtime/WebGL.cs.meta -------------------------------------------------------------------------------- /unity/upms/webgl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/package.json -------------------------------------------------------------------------------- /unity/upms/webgl/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/package.json.meta -------------------------------------------------------------------------------- /unity/upms/webgl/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/readme.md -------------------------------------------------------------------------------- /unity/upms/webgl/readme.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/upms/webgl/readme.md.meta -------------------------------------------------------------------------------- /unity/v8cc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/v8cc/CMakeLists.txt -------------------------------------------------------------------------------- /unity/v8cc/v8cc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unity/v8cc/v8cc.cc -------------------------------------------------------------------------------- /unreal/Puerts/Content/JavaScript/ffi/binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Content/JavaScript/ffi/binding.js -------------------------------------------------------------------------------- /unreal/Puerts/Content/JavaScript/ffi/buffer-ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Content/JavaScript/ffi/buffer-ext.js -------------------------------------------------------------------------------- /unreal/Puerts/Content/JavaScript/ffi/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Content/JavaScript/ffi/index.js -------------------------------------------------------------------------------- /unreal/Puerts/Content/JavaScript/ffi/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Content/JavaScript/ffi/type.js -------------------------------------------------------------------------------- /unreal/Puerts/Content/JavaScript/puerts/argv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Content/JavaScript/puerts/argv.js -------------------------------------------------------------------------------- /unreal/Puerts/Content/JavaScript/puerts/callable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Content/JavaScript/puerts/callable.js -------------------------------------------------------------------------------- /unreal/Puerts/Content/JavaScript/puerts/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Content/JavaScript/puerts/events.js -------------------------------------------------------------------------------- /unreal/Puerts/Content/JavaScript/puerts/first_run.js: -------------------------------------------------------------------------------- 1 | //createInspector(8080) -------------------------------------------------------------------------------- /unreal/Puerts/Content/JavaScript/puerts/hot_reload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Content/JavaScript/puerts/hot_reload.js -------------------------------------------------------------------------------- /unreal/Puerts/Content/JavaScript/puerts/jit_stub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Content/JavaScript/puerts/jit_stub.js -------------------------------------------------------------------------------- /unreal/Puerts/Content/JavaScript/puerts/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Content/JavaScript/puerts/log.js -------------------------------------------------------------------------------- /unreal/Puerts/Content/JavaScript/puerts/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Content/JavaScript/puerts/message.js -------------------------------------------------------------------------------- /unreal/Puerts/Content/JavaScript/puerts/modular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Content/JavaScript/puerts/modular.js -------------------------------------------------------------------------------- /unreal/Puerts/Content/JavaScript/puerts/pesaddon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Content/JavaScript/puerts/pesaddon.js -------------------------------------------------------------------------------- /unreal/Puerts/Content/JavaScript/puerts/polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Content/JavaScript/puerts/polyfill.js -------------------------------------------------------------------------------- /unreal/Puerts/Content/JavaScript/puerts/promises.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Content/JavaScript/puerts/promises.js -------------------------------------------------------------------------------- /unreal/Puerts/Content/JavaScript/puerts/uelazyload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Content/JavaScript/puerts/uelazyload.js -------------------------------------------------------------------------------- /unreal/Puerts/Content/JavaScript/puerts/websocketpp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Content/JavaScript/puerts/websocketpp.js -------------------------------------------------------------------------------- /unreal/Puerts/Content/JavaScript/react-umg/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Content/JavaScript/react-umg/index.js -------------------------------------------------------------------------------- /unreal/Puerts/Content/JavaScript/utils/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Content/JavaScript/utils/fs.js -------------------------------------------------------------------------------- /unreal/Puerts/Content/JavaScript/wasm/WasmMain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Content/JavaScript/wasm/WasmMain.json -------------------------------------------------------------------------------- /unreal/Puerts/Content/JavaScript/wasm/WasmMain.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Content/JavaScript/wasm/WasmMain.wasm -------------------------------------------------------------------------------- /unreal/Puerts/Content/JavaScript/wasm/main.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Content/JavaScript/wasm/main.wasm -------------------------------------------------------------------------------- /unreal/Puerts/Content/JavaScript/wasm/modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Content/JavaScript/wasm/modules.json -------------------------------------------------------------------------------- /unreal/Puerts/Content/JavaScript/wasm/test.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Content/JavaScript/wasm/test.wasm -------------------------------------------------------------------------------- /unreal/Puerts/Content/JavaScript/wasm/testvector.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Content/JavaScript/wasm/testvector.wasm -------------------------------------------------------------------------------- /unreal/Puerts/Puerts.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Puerts.uplugin -------------------------------------------------------------------------------- /unreal/Puerts/PuertsEditor/CodeAnalyze.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/PuertsEditor/CodeAnalyze.ts -------------------------------------------------------------------------------- /unreal/Puerts/PuertsEditor/TypeScriptInternal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/PuertsEditor/TypeScriptInternal.ts -------------------------------------------------------------------------------- /unreal/Puerts/PuertsEditor/UEMeta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/PuertsEditor/UEMeta.ts -------------------------------------------------------------------------------- /unreal/Puerts/PuertsEditor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/PuertsEditor/package.json -------------------------------------------------------------------------------- /unreal/Puerts/PuertsEditor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/PuertsEditor/tsconfig.json -------------------------------------------------------------------------------- /unreal/Puerts/Resources/ButtonIcon_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Resources/ButtonIcon_40x.png -------------------------------------------------------------------------------- /unreal/Puerts/Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Resources/Icon128.png -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/JsEnv.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/JsEnv.Build.cs -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/ContainerMeta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/ContainerMeta.cpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/ContainerMeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/ContainerMeta.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/ContainerWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/ContainerWrapper.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/CppObjectMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/CppObjectMapper.cpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/CppObjectMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/CppObjectMapper.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/DataTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/DataTransfer.cpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/DelegateWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/DelegateWrapper.cpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/DelegateWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/DelegateWrapper.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/Ext/UEExtension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/Ext/UEExtension.cpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/FFIBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/FFIBinding.cpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/Gen/FBox2D_Wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/Gen/FBox2D_Wrap.cpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/Gen/FColor_Wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/Gen/FColor_Wrap.cpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/Gen/FGuid_Wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/Gen/FGuid_Wrap.cpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/Gen/FQuat_Wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/Gen/FQuat_Wrap.cpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/JSClassRegister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/JSClassRegister.cpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/JSGeneratedClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/JSGeneratedClass.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/JSLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/JSLogger.cpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/JsEnv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/JsEnv.cpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/JsEnvGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/JsEnvGroup.cpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/JsEnvImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/JsEnvImpl.cpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/JsEnvImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/JsEnvImpl.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/JsEnvModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/JsEnvModule.cpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/ObjectCacheNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/ObjectCacheNode.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/ObjectMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/ObjectMapper.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/ObjectRetainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/ObjectRetainer.cpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/PesapiAddonLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/PesapiAddonLoad.cpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/PesapiV8Impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/PesapiV8Impl.cpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/SoftObjectWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/SoftObjectWrapper.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/StructWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/StructWrapper.cpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/StructWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/StructWrapper.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/V8InspectorImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/V8InspectorImpl.cpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/V8InspectorImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/V8InspectorImpl.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/V8Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/V8Utils.cpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Private/WebSocketImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Private/WebSocketImpl.cpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/ArrayBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/ArrayBuffer.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/Binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/Binding.hpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/DataTransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/DataTransfer.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/DynamicInvoker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/DynamicInvoker.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/ExtensionMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/ExtensionMethods.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/FFIBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/FFIBinding.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/JSClassRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/JSClassRegister.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/JSLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/JSLogger.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/JSModuleLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/JSModuleLoader.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/JsEnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/JsEnv.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/JsEnvGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/JsEnvGroup.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/JsEnvModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/JsEnvModule.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/JsObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/JsObject.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/NamespaceDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/NamespaceDef.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/Object.hpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/ObjectRetainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/ObjectRetainer.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/PString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/PString.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/PathEscape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/PathEscape.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/PesapiBackend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/PesapiBackend.hpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/PesapiObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/PesapiObject.hpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/PropertyMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/PropertyMacros.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/PuertsNamespaceDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/PuertsNamespaceDef.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/ScriptBackend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/ScriptBackend.hpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/SourceFileWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/SourceFileWatcher.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/StaticCall.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/StaticCall.hpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/TsDynamicInvoker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/TsDynamicInvoker.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/TypeInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/TypeInfo.hpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/UECompatible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/UECompatible.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/UEDataBinding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/UEDataBinding.hpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/V8Backend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/V8Backend.hpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/V8FastCall.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/V8FastCall.hpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/V8Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/V8Object.hpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/V8Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/V8Utils.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/JsEnv/Public/pesapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/JsEnv/Public/pesapi.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/Puerts/Private/PuertsSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/Puerts/Private/PuertsSetting.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/Puerts/Public/PuertsModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/Puerts/Public/PuertsModule.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/Puerts/Puerts.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/Puerts/Puerts.Build.cs -------------------------------------------------------------------------------- /unreal/Puerts/Source/WasmCore/Private/WasmCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/WasmCore/Private/WasmCore.cpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/WasmCore/Private/WasmEnv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/WasmCore/Private/WasmEnv.cpp -------------------------------------------------------------------------------- /unreal/Puerts/Source/WasmCore/Public/WasmCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/WasmCore/Public/WasmCore.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/WasmCore/Public/WasmEnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/WasmCore/Public/WasmEnv.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/WasmCore/Public/WasmFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/WasmCore/Public/WasmFunction.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/WasmCore/Public/WasmModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/WasmCore/Public/WasmModule.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/WasmCore/Public/WasmRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/WasmCore/Public/WasmRuntime.h -------------------------------------------------------------------------------- /unreal/Puerts/Source/WasmCore/WasmCore.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Source/WasmCore/WasmCore.Build.cs -------------------------------------------------------------------------------- /unreal/Puerts/ThirdParty/Include/asio/asio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/ThirdParty/Include/asio/asio.hpp -------------------------------------------------------------------------------- /unreal/Puerts/ThirdParty/Include/asio/asio/post.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/ThirdParty/Include/asio/asio/post.hpp -------------------------------------------------------------------------------- /unreal/Puerts/ThirdParty/Include/asio/asio/read.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/ThirdParty/Include/asio/asio/read.hpp -------------------------------------------------------------------------------- /unreal/Puerts/ThirdParty/Include/asio/asio/ssl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/ThirdParty/Include/asio/asio/ssl.hpp -------------------------------------------------------------------------------- /unreal/Puerts/ThirdParty/Include/ffi/Win64/ffi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/ThirdParty/Include/ffi/Win64/ffi.h -------------------------------------------------------------------------------- /unreal/Puerts/ThirdParty/Include/ffi/iOS/ffi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/ThirdParty/Include/ffi/iOS/ffi.h -------------------------------------------------------------------------------- /unreal/Puerts/ThirdParty/Include/ffi/macOS/ffi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/ThirdParty/Include/ffi/macOS/ffi.h -------------------------------------------------------------------------------- /unreal/Puerts/ThirdParty/Libnode_APL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/ThirdParty/Libnode_APL.xml -------------------------------------------------------------------------------- /unreal/Puerts/ThirdParty/Library/ffi/Win64/ffi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/ThirdParty/Library/ffi/Win64/ffi.lib -------------------------------------------------------------------------------- /unreal/Puerts/ThirdParty/Library/ffi/iOS/libffi.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/ThirdParty/Library/ffi/iOS/libffi.a -------------------------------------------------------------------------------- /unreal/Puerts/ThirdParty/Library/ffi/macOS/libffi.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/ThirdParty/Library/ffi/macOS/libffi.a -------------------------------------------------------------------------------- /unreal/Puerts/Typing/ffi/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Typing/ffi/index.d.ts -------------------------------------------------------------------------------- /unreal/Puerts/Typing/puerts/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Typing/puerts/index.d.ts -------------------------------------------------------------------------------- /unreal/Puerts/Typing/ue/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Typing/ue/index.d.ts -------------------------------------------------------------------------------- /unreal/Puerts/Typing/ue/puerts.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Typing/ue/puerts.d.ts -------------------------------------------------------------------------------- /unreal/Puerts/Typing/ue/puerts_decorators.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/Typing/ue/puerts_decorators.d.ts -------------------------------------------------------------------------------- /unreal/Puerts/enable_puerts_module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/enable_puerts_module.js -------------------------------------------------------------------------------- /unreal/Puerts/gen_pesapi_adpt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/gen_pesapi_adpt.js -------------------------------------------------------------------------------- /unreal/Puerts/make_puerts_libs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/Puerts/make_puerts_libs.js -------------------------------------------------------------------------------- /unreal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/puerts/HEAD/unreal/README.md --------------------------------------------------------------------------------