summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Script-url.js
blob: 71f9dc629bcb04d52f3aa8eac0b4f1801a0ee9a4 (plain)
1
2
3
4
5
6
7
8
9
10
// Script.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.url, fileName);
}