Index: src/ast/modules.h |
diff --git a/src/ast/modules.h b/src/ast/modules.h |
index 37a82224c20dc1fada95f4c455ec495ef97ec259..a303c699178871e5273103ece4d8e54be27d0571 100644 |
--- a/src/ast/modules.h |
+++ b/src/ast/modules.h |
@@ -14,6 +14,7 @@ namespace internal { |
class AstRawString; |
+class ModuleInfo; |
class ModuleInfoEntry; |
class ModuleDescriptor : public ZoneObject { |
@@ -169,7 +170,7 @@ class ModuleDescriptor : public ZoneObject { |
Handle<FixedArray> SerializeRegularExports(Isolate* isolate, |
Zone* zone) const; |
void DeserializeRegularExports(Isolate* isolate, AstValueFactory* avfactory, |
- Handle<FixedArray> data); |
+ Handle<ModuleInfo> module_info); |
private: |
// TODO(neis): Use STL datastructure instead of ZoneList? |