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

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

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

var fw = gw.getOwnPropertyDescriptor('double').value;
assertEq(!!fw.script.source.url.match(/Source-url-01.js line [0-9]+ > eval/), true);