├── .gitattributes ├── .gitignore ├── .gitpod.yml ├── LICENSE ├── README.md └── supangle ├── app ├── index.cc └── src │ ├── fs.hpp │ ├── globals.h │ ├── supangle.hpp │ ├── timer.hpp │ └── utils │ ├── report_exception.hpp │ ├── set_env_variables.hpp │ ├── to_c_string.hpp │ └── v8_str.hpp ├── index.js ├── interfaces ├── console.js └── timer.js ├── libuv ├── include │ ├── uv.h │ └── uv │ │ ├── aix.h │ │ ├── bsd.h │ │ ├── darwin.h │ │ ├── errno.h │ │ ├── linux.h │ │ ├── os390.h │ │ ├── posix.h │ │ ├── sunos.h │ │ ├── threadpool.h │ │ ├── tree.h │ │ ├── unix.h │ │ ├── version.h │ │ └── win.h └── libuv-x86_64-gitpod.a ├── makefile ├── module.js ├── scripts ├── libuv-env-script-x86.sh ├── v8-args.gn └── v8-env-script-x86.sh ├── start.sh └── v8 ├── icudtl.dat ├── include ├── APIDesign.md ├── DEPS ├── DIR_METADATA ├── OWNERS ├── cppgc │ ├── DEPS │ ├── OWNERS │ ├── README.md │ ├── allocation.h │ ├── common.h │ ├── cross-thread-persistent.h │ ├── custom-space.h │ ├── default-platform.h │ ├── ephemeron-pair.h │ ├── explicit-management.h │ ├── garbage-collected.h │ ├── heap-consistency.h │ ├── heap-handle.h │ ├── heap-state.h │ ├── heap-statistics.h │ ├── heap.h │ ├── internal │ │ ├── api-constants.h │ │ ├── atomic-entry-flag.h │ │ ├── base-page-handle.h │ │ ├── caged-heap-local-data.h │ │ ├── caged-heap.h │ │ ├── compiler-specific.h │ │ ├── finalizer-trait.h │ │ ├── gc-info.h │ │ ├── logging.h │ │ ├── member-storage.h │ │ ├── name-trait.h │ │ ├── persistent-node.h │ │ ├── pointer-policies.h │ │ └── write-barrier.h │ ├── liveness-broker.h │ ├── macros.h │ ├── member.h │ ├── name-provider.h │ ├── object-size-trait.h │ ├── persistent.h │ ├── platform.h │ ├── prefinalizer.h │ ├── process-heap-statistics.h │ ├── sentinel-pointer.h │ ├── source-location.h │ ├── testing.h │ ├── trace-trait.h │ ├── type-traits.h │ └── visitor.h ├── js_protocol-1.2.json ├── js_protocol-1.3.json ├── js_protocol.pdl ├── libplatform │ ├── DEPS │ ├── libplatform-export.h │ ├── libplatform.h │ └── v8-tracing.h ├── v8-array-buffer.h ├── v8-callbacks.h ├── v8-container.h ├── v8-context.h ├── v8-cppgc.h ├── v8-data.h ├── v8-date.h ├── v8-debug.h ├── v8-embedder-heap.h ├── v8-embedder-state-scope.h ├── v8-exception.h ├── v8-extension.h ├── v8-external.h ├── v8-fast-api-calls.h ├── v8-forward.h ├── v8-function-callback.h ├── v8-function.h ├── v8-initialization.h ├── v8-inspector-protocol.h ├── v8-inspector.h ├── v8-internal.h ├── v8-isolate.h ├── v8-json.h ├── v8-local-handle.h ├── v8-locker.h ├── v8-maybe.h ├── v8-memory-span.h ├── v8-message.h ├── v8-metrics.h ├── v8-microtask-queue.h ├── v8-microtask.h ├── v8-object.h ├── v8-persistent-handle.h ├── v8-platform.h ├── v8-primitive-object.h ├── v8-primitive.h ├── v8-profiler.h ├── v8-promise.h ├── v8-proxy.h ├── v8-regexp.h ├── v8-script.h ├── v8-snapshot.h ├── v8-statistics.h ├── v8-template.h ├── v8-traced-handle.h ├── v8-typed-array.h ├── v8-unwinder-state.h ├── v8-unwinder.h ├── v8-util.h ├── v8-value-serializer-version.h ├── v8-value-serializer.h ├── v8-value.h ├── v8-version-string.h ├── v8-version.h ├── v8-wasm-trap-handler-posix.h ├── v8-wasm-trap-handler-win.h ├── v8-wasm.h ├── v8-weak-callback-info.h ├── v8.h └── v8config.h └── libv8_monolith.a /.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/README.md -------------------------------------------------------------------------------- /supangle/app/index.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/app/index.cc -------------------------------------------------------------------------------- /supangle/app/src/fs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/app/src/fs.hpp -------------------------------------------------------------------------------- /supangle/app/src/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/app/src/globals.h -------------------------------------------------------------------------------- /supangle/app/src/supangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/app/src/supangle.hpp -------------------------------------------------------------------------------- /supangle/app/src/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/app/src/timer.hpp -------------------------------------------------------------------------------- /supangle/app/src/utils/report_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/app/src/utils/report_exception.hpp -------------------------------------------------------------------------------- /supangle/app/src/utils/set_env_variables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/app/src/utils/set_env_variables.hpp -------------------------------------------------------------------------------- /supangle/app/src/utils/to_c_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/app/src/utils/to_c_string.hpp -------------------------------------------------------------------------------- /supangle/app/src/utils/v8_str.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/app/src/utils/v8_str.hpp -------------------------------------------------------------------------------- /supangle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/index.js -------------------------------------------------------------------------------- /supangle/interfaces/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/interfaces/console.js -------------------------------------------------------------------------------- /supangle/interfaces/timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/interfaces/timer.js -------------------------------------------------------------------------------- /supangle/libuv/include/uv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/libuv/include/uv.h -------------------------------------------------------------------------------- /supangle/libuv/include/uv/aix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/libuv/include/uv/aix.h -------------------------------------------------------------------------------- /supangle/libuv/include/uv/bsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/libuv/include/uv/bsd.h -------------------------------------------------------------------------------- /supangle/libuv/include/uv/darwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/libuv/include/uv/darwin.h -------------------------------------------------------------------------------- /supangle/libuv/include/uv/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/libuv/include/uv/errno.h -------------------------------------------------------------------------------- /supangle/libuv/include/uv/linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/libuv/include/uv/linux.h -------------------------------------------------------------------------------- /supangle/libuv/include/uv/os390.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/libuv/include/uv/os390.h -------------------------------------------------------------------------------- /supangle/libuv/include/uv/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/libuv/include/uv/posix.h -------------------------------------------------------------------------------- /supangle/libuv/include/uv/sunos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/libuv/include/uv/sunos.h -------------------------------------------------------------------------------- /supangle/libuv/include/uv/threadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/libuv/include/uv/threadpool.h -------------------------------------------------------------------------------- /supangle/libuv/include/uv/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/libuv/include/uv/tree.h -------------------------------------------------------------------------------- /supangle/libuv/include/uv/unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/libuv/include/uv/unix.h -------------------------------------------------------------------------------- /supangle/libuv/include/uv/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/libuv/include/uv/version.h -------------------------------------------------------------------------------- /supangle/libuv/include/uv/win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/libuv/include/uv/win.h -------------------------------------------------------------------------------- /supangle/libuv/libuv-x86_64-gitpod.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/libuv/libuv-x86_64-gitpod.a -------------------------------------------------------------------------------- /supangle/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/makefile -------------------------------------------------------------------------------- /supangle/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/module.js -------------------------------------------------------------------------------- /supangle/scripts/libuv-env-script-x86.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/scripts/libuv-env-script-x86.sh -------------------------------------------------------------------------------- /supangle/scripts/v8-args.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/scripts/v8-args.gn -------------------------------------------------------------------------------- /supangle/scripts/v8-env-script-x86.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/scripts/v8-env-script-x86.sh -------------------------------------------------------------------------------- /supangle/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/start.sh -------------------------------------------------------------------------------- /supangle/v8/icudtl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/icudtl.dat -------------------------------------------------------------------------------- /supangle/v8/include/APIDesign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/APIDesign.md -------------------------------------------------------------------------------- /supangle/v8/include/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/DEPS -------------------------------------------------------------------------------- /supangle/v8/include/DIR_METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/DIR_METADATA -------------------------------------------------------------------------------- /supangle/v8/include/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/OWNERS -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/DEPS -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/OWNERS -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/README.md -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/allocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/allocation.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/common.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/cross-thread-persistent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/cross-thread-persistent.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/custom-space.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/custom-space.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/default-platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/default-platform.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/ephemeron-pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/ephemeron-pair.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/explicit-management.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/explicit-management.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/garbage-collected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/garbage-collected.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/heap-consistency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/heap-consistency.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/heap-handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/heap-handle.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/heap-state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/heap-state.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/heap-statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/heap-statistics.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/heap.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/internal/api-constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/internal/api-constants.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/internal/atomic-entry-flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/internal/atomic-entry-flag.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/internal/base-page-handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/internal/base-page-handle.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/internal/caged-heap-local-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/internal/caged-heap-local-data.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/internal/caged-heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/internal/caged-heap.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/internal/compiler-specific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/internal/compiler-specific.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/internal/finalizer-trait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/internal/finalizer-trait.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/internal/gc-info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/internal/gc-info.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/internal/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/internal/logging.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/internal/member-storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/internal/member-storage.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/internal/name-trait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/internal/name-trait.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/internal/persistent-node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/internal/persistent-node.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/internal/pointer-policies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/internal/pointer-policies.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/internal/write-barrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/internal/write-barrier.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/liveness-broker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/liveness-broker.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/macros.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/member.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/member.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/name-provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/name-provider.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/object-size-trait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/object-size-trait.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/persistent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/persistent.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/platform.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/prefinalizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/prefinalizer.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/process-heap-statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/process-heap-statistics.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/sentinel-pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/sentinel-pointer.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/source-location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/source-location.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/testing.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/trace-trait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/trace-trait.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/type-traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/type-traits.h -------------------------------------------------------------------------------- /supangle/v8/include/cppgc/visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/cppgc/visitor.h -------------------------------------------------------------------------------- /supangle/v8/include/js_protocol-1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/js_protocol-1.2.json -------------------------------------------------------------------------------- /supangle/v8/include/js_protocol-1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/js_protocol-1.3.json -------------------------------------------------------------------------------- /supangle/v8/include/js_protocol.pdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/js_protocol.pdl -------------------------------------------------------------------------------- /supangle/v8/include/libplatform/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/libplatform/DEPS -------------------------------------------------------------------------------- /supangle/v8/include/libplatform/libplatform-export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/libplatform/libplatform-export.h -------------------------------------------------------------------------------- /supangle/v8/include/libplatform/libplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/libplatform/libplatform.h -------------------------------------------------------------------------------- /supangle/v8/include/libplatform/v8-tracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/libplatform/v8-tracing.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-array-buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-array-buffer.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-callbacks.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-container.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-context.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-cppgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-cppgc.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-data.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-date.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-debug.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-embedder-heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-embedder-heap.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-embedder-state-scope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-embedder-state-scope.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-exception.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-extension.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-external.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-fast-api-calls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-fast-api-calls.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-forward.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-function-callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-function-callback.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-function.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-initialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-initialization.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-inspector-protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-inspector-protocol.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-inspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-inspector.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-internal.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-isolate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-isolate.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-json.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-local-handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-local-handle.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-locker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-locker.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-maybe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-maybe.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-memory-span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-memory-span.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-message.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-metrics.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-microtask-queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-microtask-queue.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-microtask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-microtask.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-object.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-persistent-handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-persistent-handle.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-platform.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-primitive-object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-primitive-object.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-primitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-primitive.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-profiler.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-promise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-promise.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-proxy.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-regexp.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-script.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-snapshot.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-statistics.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-template.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-traced-handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-traced-handle.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-typed-array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-typed-array.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-unwinder-state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-unwinder-state.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-unwinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-unwinder.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-util.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-value-serializer-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-value-serializer-version.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-value-serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-value-serializer.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-value.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-version-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-version-string.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-version.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-wasm-trap-handler-posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-wasm-trap-handler-posix.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-wasm-trap-handler-win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-wasm-trap-handler-win.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-wasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-wasm.h -------------------------------------------------------------------------------- /supangle/v8/include/v8-weak-callback-info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8-weak-callback-info.h -------------------------------------------------------------------------------- /supangle/v8/include/v8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8.h -------------------------------------------------------------------------------- /supangle/v8/include/v8config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/include/v8config.h -------------------------------------------------------------------------------- /supangle/v8/libv8_monolith.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpongeBed81/supangle/HEAD/supangle/v8/libv8_monolith.a --------------------------------------------------------------------------------