summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Source-url-02.js
blob: 9d20155b59c65efd292b9e0a607e834b598e7f1b (plain)
1
2
3
4
5
6
7
8
9
10
11
// Source.prototype.url returns a synthesized URL for Function code.

var g = newGlobal({newCompartment: true});
g.eval('var double = Function("x", "return 2*x;");');

var dbg = new Debugger;
var gw = dbg.addDebuggee(g);

var fw = gw.getOwnPropertyDescriptor('double').value;
print(fw.script.source.url);
assertEq(!!fw.script.source.url.match(/Source-url-02.js .* > Function/), true);