| 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
|
| };
|
| };
|
|
|