@@ -64,9 +64,9 @@ std::vector<size_t> IsolateData::Serialize(SnapshotCreator* creator) {
64
64
// but that's not part of the V8 API contract so we use an array
65
65
// just to be safe.
66
66
67
- #define VP (PropertyName, StringValue ) V(v8:: Private, PropertyName)
68
- #define VY (PropertyName, StringValue ) V(v8:: Symbol, PropertyName)
69
- #define VS (PropertyName, StringValue ) V(v8:: String, PropertyName)
67
+ #define VP (PropertyName, StringValue ) V(Private, PropertyName)
68
+ #define VY (PropertyName, StringValue ) V(Symbol, PropertyName)
69
+ #define VS (PropertyName, StringValue ) V(String, PropertyName)
70
70
#define V (TypeName, PropertyName ) \
71
71
indexes.push_back (creator->AddData (PropertyName##_.Get (isolate)));
72
72
PER_ISOLATE_PRIVATE_SYMBOL_PROPERTIES (VP)
@@ -84,9 +84,9 @@ void IsolateData::DeserializeProperties(const std::vector<size_t>* indexes) {
84
84
size_t i = 0 ;
85
85
HandleScope handle_scope (isolate_);
86
86
87
- #define VP (PropertyName, StringValue ) V(v8:: Private, PropertyName)
88
- #define VY (PropertyName, StringValue ) V(v8:: Symbol, PropertyName)
89
- #define VS (PropertyName, StringValue ) V(v8:: String, PropertyName)
87
+ #define VP (PropertyName, StringValue ) V(Private, PropertyName)
88
+ #define VY (PropertyName, StringValue ) V(Symbol, PropertyName)
89
+ #define VS (PropertyName, StringValue ) V(String, PropertyName)
90
90
#define V (TypeName, PropertyName ) \
91
91
do { \
92
92
MaybeLocal<TypeName> field = \
@@ -994,7 +994,7 @@ Environment* Environment::worker_parent_env() const {
994
994
void MemoryTracker::TrackField (const char * edge_name,
995
995
const CleanupHookCallback& value,
996
996
const char * node_name) {
997
- v8:: HandleScope handle_scope (isolate_);
997
+ HandleScope handle_scope (isolate_);
998
998
// Here, we utilize the fact that CleanupHookCallback instances
999
999
// are all unique and won't be tracked twice in one BuildEmbedderGraph
1000
1000
// callback.
0 commit comments