Source code
Revision control
Copy as Markdown
Other Tools
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
"use strict";
try {
const { BrowserLoader } = ChromeUtils.importESModule(
"resource://devtools/shared/loader/browser-loader.sys.mjs"
);
// Expose both `browserLoader` and `Debugger` to panel.js
});
globalThis.Debugger = globalThis.browserLoader.require(
"devtools/client/debugger/src/main"
);
// Expose `require` for the CustomFormatter ESM in order to allow it to load
// ObjectInspector, which are still CommonJS modules, via the same BrowserLoader instance.
globalThis.browserLoaderRequire = globalThis.browserLoader.require;
} catch (e) {
dump("Exception happened while loading the debugger:\n");
dump(e + "\n");
dump(e.stack + "\n");
}