summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Source-url.js
blob: 02f822b3a97467a9d3faacfd53d611298fbcbadb (plain)
1
2
3
4
5
6
7
8
9
10
// Source.prototype.url can be a string or null.

var g = newGlobal();
var dbg = new Debugger;
var gw = dbg.addDebuggee(g);
for (var fileName of ['file:///var/foo.js', null]) {
    g.evaluate("function f(x) { return 2*x; }", {fileName: fileName});
    var fw = gw.getOwnPropertyDescriptor('f').value;
    assertEq(fw.script.source.url, fileName);
}