Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/wasm/wasm-objects.tq')
-rw-r--r--deps/v8/src/wasm/wasm-objects.tq12
1 files changed, 12 insertions, 0 deletions
diff --git a/deps/v8/src/wasm/wasm-objects.tq b/deps/v8/src/wasm/wasm-objects.tq
index 8eda9aba2ea..e611ced16ef 100644
--- a/deps/v8/src/wasm/wasm-objects.tq
+++ b/deps/v8/src/wasm/wasm-objects.tq
@@ -102,3 +102,15 @@ extern class AsmWasmData extends Struct {
export_wrappers: FixedArray;
uses_bitset: HeapNumber;
}
+
+@generateCppClass
+extern class WasmStruct extends HeapObject {
+}
+
+@generateCppClass
+extern class WasmArray extends HeapObject {
+ length: uint32;
+
+ @if(TAGGED_SIZE_8_BYTES) optional_padding: uint32;
+ @ifnot(TAGGED_SIZE_8_BYTES) optional_padding: void;
+}