summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Script-selfhosted-builtins.js
blob: ff981f5400bee62209e0374952315b63661c5509 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// The script of self-hosted builtins is not exposed to the debugger and
// instead is reported as |undefined| just like native builtins.

let g = newGlobal({newCompartment: true});

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

// Array is a known native builtin function.
let nativeBuiltin = gw.makeDebuggeeValue(g.Array);
assertEq(nativeBuiltin.script, undefined);

// Array.prototype[@@iterator] is a known self-hosted builtin function.
let selfhostedBuiltin = gw.makeDebuggeeValue(g.Array.prototype[Symbol.iterator]);
assertEq(selfhostedBuiltin.script, undefined);