summaryrefslogtreecommitdiff
path: root/deps/v8/src/ast/modules.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/ast/modules.h')
-rw-r--r--deps/v8/src/ast/modules.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/deps/v8/src/ast/modules.h b/deps/v8/src/ast/modules.h
index 4921d41932..b57387b25f 100644
--- a/deps/v8/src/ast/modules.h
+++ b/deps/v8/src/ast/modules.h
@@ -107,7 +107,8 @@ class SourceTextModuleDescriptor : public ZoneObject {
module_request(-1),
cell_index(0) {}
- Handle<SourceTextModuleInfoEntry> Serialize(Isolate* isolate) const;
+ template <typename LocalIsolate>
+ Handle<SourceTextModuleInfoEntry> Serialize(LocalIsolate* isolate) const;
};
enum CellIndexKind { kInvalid, kExport, kImport };
@@ -184,7 +185,8 @@ class SourceTextModuleDescriptor : public ZoneObject {
namespace_imports_.push_back(entry);
}
- Handle<FixedArray> SerializeRegularExports(Isolate* isolate,
+ template <typename LocalIsolate>
+ Handle<FixedArray> SerializeRegularExports(LocalIsolate* isolate,
Zone* zone) const;
private: