summaryrefslogtreecommitdiff
path: root/deps/v8/src/objects/code.tq
diff options
context:
space:
mode:
authorMatheus Marchini <mmarchini@netflix.com>2020-03-05 10:49:19 -0800
committerMatheus Marchini <mmarchini@netflix.com>2020-03-18 16:23:22 -0700
commit2883c855e0105b51e5c8020d21458af109ffe3d4 (patch)
tree26777aad0a398e9f7755c8b65ac76827fe352a81 /deps/v8/src/objects/code.tq
parent5f0af2af2a67216e00fe07ccda11e889d14abfcd (diff)
downloadnode-new-2883c855e0105b51e5c8020d21458af109ffe3d4.tar.gz
deps: update V8 to 8.1.307.20
PR-URL: https://github.com/nodejs/node/pull/32116 Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'deps/v8/src/objects/code.tq')
-rw-r--r--deps/v8/src/objects/code.tq19
1 files changed, 19 insertions, 0 deletions
diff --git a/deps/v8/src/objects/code.tq b/deps/v8/src/objects/code.tq
new file mode 100644
index 0000000000..ccf7f130c8
--- /dev/null
+++ b/deps/v8/src/objects/code.tq
@@ -0,0 +1,19 @@
+// Copyright 2019 the V8 project authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+type DependentCode extends WeakFixedArray;
+
+extern class BytecodeArray extends FixedArrayBase {
+ // TODO(v8:8983): bytecode array object sizes vary based on their contents.
+ constant_pool: FixedArray;
+ handler_table: ByteArray;
+ source_position_table: Undefined|ByteArray|Exception;
+ frame_size: int32;
+ parameter_size: int32;
+ incoming_new_target_or_generator_register: int32;
+ osr_nesting_level: int8;
+ bytecode_age: int8;
+}
+
+extern class CodeDataContainer extends HeapObject;