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

Unified Diff: src/scopeinfo.h

Issue 935723004: Rename Interface to ModuleDescriptor (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 10 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/ppc/full-codegen-ppc.cc ('k') | src/scopeinfo.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/scopeinfo.h
diff --git a/src/scopeinfo.h b/src/scopeinfo.h
index cfdd4b68dd64baf02d8b874b482b2c42e5a430ff..70a17cd7d4a945975ce7ed59f7dc73c9d42d569c 100644
--- a/src/scopeinfo.h
+++ b/src/scopeinfo.h
@@ -6,7 +6,7 @@
#define V8_SCOPEINFO_H_
#include "src/allocation.h"
-#include "src/interface.h"
+#include "src/modules.h"
#include "src/variables.h"
namespace v8 {
@@ -120,8 +120,8 @@ class ModuleInfo: public FixedArray {
return static_cast<ModuleInfo*>(FixedArray::cast(description));
}
- static Handle<ModuleInfo> Create(
- Isolate* isolate, Interface* interface, Scope* scope);
+ static Handle<ModuleInfo> Create(Isolate* isolate,
+ ModuleDescriptor* descriptor, Scope* scope);
// Index of module's context in host context.
int host_index() { return Smi::cast(get(HOST_OFFSET))->value(); }
« no previous file with comments | « src/ppc/full-codegen-ppc.cc ('k') | src/scopeinfo.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698