summaryrefslogtreecommitdiff
path: root/deps/v8/src/objects/scope-info.tq
diff options
context:
space:
mode:
authorMichaël Zasso <targos@protonmail.com>2020-10-15 20:17:08 +0200
committerMichaël Zasso <targos@protonmail.com>2020-10-18 20:16:47 +0200
commita1d639ba5de4ff34e34fb575fbb6cc1d41ec3cce (patch)
treeabc7d41c12f1495b1208fa4449cb2508c92c5e85 /deps/v8/src/objects/scope-info.tq
parent089d654dd85f8e548597329f60a41d6029260caa (diff)
downloadnode-new-a1d639ba5de4ff34e34fb575fbb6cc1d41ec3cce.tar.gz
deps: update V8 to 8.6.395
PR-URL: https://github.com/nodejs/node/pull/35415 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com>
Diffstat (limited to 'deps/v8/src/objects/scope-info.tq')
-rw-r--r--deps/v8/src/objects/scope-info.tq5
1 files changed, 4 insertions, 1 deletions
diff --git a/deps/v8/src/objects/scope-info.tq b/deps/v8/src/objects/scope-info.tq
index cb8ead30ab..c791f6df37 100644
--- a/deps/v8/src/objects/scope-info.tq
+++ b/deps/v8/src/objects/scope-info.tq
@@ -4,6 +4,9 @@
extern class ScopeInfo extends FixedArray;
+extern macro EmptyScopeInfoConstant(): ScopeInfo;
+const kEmptyScopeInfo: ScopeInfo = EmptyScopeInfoConstant();
+
const kScopeInfoFlagsIndex:
constexpr int32 generates 'ScopeInfo::Fields::kFlags';
@@ -40,5 +43,5 @@ bitfield struct ScopeFlags extends uint32 {
private_name_lookup_skips_outer_class: bool: 1 bit;
has_context_extension_slot: bool: 1 bit;
is_repl_mode_scope: bool: 1 bit;
- has_locals_black_list: bool: 1 bit;
+ has_locals_block_list: bool: 1 bit;
}