Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

const { Log } = ChromeUtils.importESModule(
);
function run_test() {
// Verify error with double extensions are handled correctly.
const nsIExceptionTrace = Log.stackTrace({
location: {
lineNumber: 10,
name: "func",
caller: null,
},
});
Assert.equal(nsIExceptionTrace, "Stack trace: func()@file.sys.mjs:10");
const JSExceptionTrace = Log.stackTrace({
});
Assert.equal(JSExceptionTrace, "JS Stack trace: func2@file.sys.mjs:10:2");
}