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

var g = newGlobal({newCompartment: true});
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);
}