diff options
Diffstat (limited to 'deps/v8/src/snapshot/partial-serializer.h')
-rw-r--r-- | deps/v8/src/snapshot/partial-serializer.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/deps/v8/src/snapshot/partial-serializer.h b/deps/v8/src/snapshot/partial-serializer.h index b436c40cbe..3225b004cb 100644 --- a/deps/v8/src/snapshot/partial-serializer.h +++ b/deps/v8/src/snapshot/partial-serializer.h @@ -21,7 +21,7 @@ class PartialSerializer : public Serializer<> { ~PartialSerializer() override; // Serialize the objects reachable from a single object pointer. - void Serialize(Object** o, bool include_global_proxy); + void Serialize(Context** o, bool include_global_proxy); bool can_be_rehashed() const { return can_be_rehashed_; } @@ -41,6 +41,7 @@ class PartialSerializer : public Serializer<> { // Indicates whether we only serialized hash tables that we can rehash. // TODO(yangguo): generalize rehashing, and remove this flag. bool can_be_rehashed_; + Context* context_; DISALLOW_COPY_AND_ASSIGN(PartialSerializer); }; |