| Index: src/api.cc
|
| diff --git a/src/api.cc b/src/api.cc
|
| index 286066a37e9ecb6febda52c4f5b6d1c37c6d8ef1..b2352f0be147ce2e721b909226b1003b8cb8dd81 100644
|
| --- a/src/api.cc
|
| +++ b/src/api.cc
|
| @@ -9328,6 +9328,12 @@ void debug::GetLoadedScripts(v8::Isolate* v8_isolate,
|
| }
|
| }
|
|
|
| +void debug::ReportExistingModules(Isolate* v8_isolate) {
|
| + i::Isolate* isolate = reinterpret_cast<i::Isolate*>(v8_isolate);
|
| + ENTER_V8(isolate);
|
| + isolate->debug()->ReportExistingModules();
|
| +}
|
| +
|
| MaybeLocal<UnboundScript> debug::CompileInspectorScript(Isolate* v8_isolate,
|
| Local<String> source) {
|
| i::Isolate* isolate = reinterpret_cast<i::Isolate*>(v8_isolate);
|
|
|