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

Unified Diff: src/isolate.h

Issue 2703563002: [ESNext] Implement DynamicImportCall (Closed)
Patch Set: rebase Created 3 years, 8 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/interpreter/bytecode-generator.cc ('k') | src/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/isolate.h
diff --git a/src/isolate.h b/src/isolate.h
index a6c47f525cde37bbc347bc145addab32d8730a49..3a8d1b3a0380447095958dd67e024dbc2d055c68 100644
--- a/src/isolate.h
+++ b/src/isolate.h
@@ -1218,6 +1218,12 @@ class Isolate {
bool IsInAnyContext(Object* object, uint32_t index);
+ void SetHostImportModuleDynamicallyCallback(
+ HostImportModuleDynamicallyCallback callback);
+ void RunHostImportModuleDynamicallyCallback(Handle<String> referrer,
+ Handle<String> specifier,
+ Handle<JSPromise> promise);
+
void SetRAILMode(RAILMode rail_mode);
RAILMode rail_mode() { return rail_mode_.Value(); }
@@ -1449,6 +1455,7 @@ class Isolate {
base::AtomicValue<RAILMode> rail_mode_;
bool promise_hook_or_debug_is_active_;
PromiseHook promise_hook_;
+ HostImportModuleDynamicallyCallback host_import_module_dynamically_callback_;
base::Mutex rail_mutex_;
double load_start_time_ms_;
« no previous file with comments | « src/interpreter/bytecode-generator.cc ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698