| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index a0e168c6989f54477a9fc4728b6c443f681fee8f..c5521063dd6b8bf31d400e142c39e37e2719c665 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -4572,6 +4572,7 @@ class ModuleInfo : public FixedArray {
|
| public:
|
| DECLARE_CAST(ModuleInfo)
|
| static Handle<ModuleInfo> New(Isolate* isolate, ModuleDescriptor* descr);
|
| + inline FixedArray* module_requests() const;
|
| inline FixedArray* special_exports() const;
|
| inline FixedArray* regular_exports() const;
|
|
|
| @@ -4581,7 +4582,12 @@ class ModuleInfo : public FixedArray {
|
|
|
| private:
|
| friend class Factory;
|
| - enum { kSpecialExportsIndex, kRegularExportsIndex, kLength };
|
| + enum {
|
| + kModuleRequestsIndex,
|
| + kSpecialExportsIndex,
|
| + kRegularExportsIndex,
|
| + kLength
|
| + };
|
| };
|
|
|
| // The cache for maps used by normalized (dictionary mode) objects.
|
|
|