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

Unified Diff: src/objects.h

Issue 2368613002: [modules] Simplify treatment of empty 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 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
};
« 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