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

Unified Diff: src/factory.cc

Issue 2668613002: [inspector] added Debugger.moduleRequested notification
Patch Set: addressed comments 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
Index: src/factory.cc
diff --git a/src/factory.cc b/src/factory.cc
index b4964b56bfc74284369245d0d65b26fbe14ec04c..426d92e0f71194ad48593a09ea86221f85cf6eff 100644
--- a/src/factory.cc
+++ b/src/factory.cc
@@ -1929,6 +1929,7 @@ Handle<Module> Factory::NewModule(Handle<SharedFunctionInfo> code) {
module->set_hash(isolate()->GenerateIdentityHash(Smi::kMaxValue));
module->set_module_namespace(isolate()->heap()->undefined_value());
module->set_requested_modules(*requested_modules);
+ module->set_script(code->script());
DCHECK(!module->instantiated());
DCHECK(!module->evaluated());
return module;

Powered by Google App Engine
This is Rietveld 408576698