Source code
Revision control
Copy as Markdown
Other Tools
/* -*- js-indent-level: 4; indent-tabs-mode: nil -*- */
// Source.prototype.displayURL can be a string or null.
let g = newGlobal({newCompartment: true});
let dbg = new Debugger;
let gw = dbg.addDebuggee(g);
function getDisplayURL() {
let fw = gw.makeDebuggeeValue(g.f);
return fw.script.source.displayURL;
}
// Comment pragmas
g.evaluate('function f() {}\n' +
g.evaluate('function f() {}\n' +
g.evaluate('function f() {}\n' +
'/*\n' +
'*/');