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

Unified Diff: src/objects.cc

Issue 2668613002: [inspector] added Debugger.moduleRequested notification
Patch Set: report existing resolved module on Debugger.enable Created 3 years, 11 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
« src/objects.h ('K') | « src/objects.h ('k') | src/objects-debug.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.cc
diff --git a/src/objects.cc b/src/objects.cc
index 989a2155874c1073fc0fba0239844ddeac19fc3a..ba2e45d82e0ab5123b2233ace002d3811803a16d 100644
--- a/src/objects.cc
+++ b/src/objects.cc
@@ -19739,6 +19739,9 @@ bool Module::Instantiate(Handle<Module> module, v8::Local<v8::Context> context,
}
Handle<Module> requested_module = Utils::OpenHandle(*api_requested_module);
module->requested_modules()->set(i, *requested_module);
+ if (isolate->debug()->is_active()) {
+ isolate->debug()->OnModuleResolved(module, requested_module, specifier);
+ }
if (!Instantiate(requested_module, context, callback)) {
return false;
}
« src/objects.h ('K') | « src/objects.h ('k') | src/objects-debug.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698