Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(872)

Unified Diff: src/objects.h

Issue 2357003002: [modules] Also (de-)serialize imports. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/ast/scopes.cc ('k') | src/objects-inl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index 168dc0744e00ec8d2601cfa3ecfe657163f66773..0f9b007c42d7c28168350f81c19b7a17422504c3 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -4575,6 +4575,8 @@ class ModuleInfo : public FixedArray {
inline FixedArray* module_requests() const;
inline FixedArray* special_exports() const;
inline FixedArray* regular_exports() const;
+ inline FixedArray* special_imports() const;
+ inline FixedArray* regular_imports() const;
#ifdef DEBUG
inline bool Equals(ModuleInfo* other) const;
@@ -4586,6 +4588,8 @@ class ModuleInfo : public FixedArray {
kModuleRequestsIndex,
kSpecialExportsIndex,
kRegularExportsIndex,
+ kSpecialImportsIndex,
+ kRegularImportsIndex,
kLength
};
};
« no previous file with comments | « src/ast/scopes.cc ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698