| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index 3acd8ff2b03a417ac8b531bec9443b69f263200b..ca3c8f89b7c5bbac73d62cd5e3c597b1f41c258b 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -4587,7 +4587,7 @@ 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* namespace_imports() const;
|
| inline FixedArray* regular_imports() const;
|
|
|
| #ifdef DEBUG
|
| @@ -4600,7 +4600,7 @@ class ModuleInfo : public FixedArray {
|
| kModuleRequestsIndex,
|
| kSpecialExportsIndex,
|
| kRegularExportsIndex,
|
| - kSpecialImportsIndex,
|
| + kNamespaceImportsIndex,
|
| kRegularImportsIndex,
|
| kLength
|
| };
|
|
|