summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/self-hosting/get-backtrace-in-constructing-bound-function.js
blob: 10cc1b3217132cf4148382f4575a4f53b7db936f (plain)
1
2
3
4
5
6
function t() {
    getBacktrace({ locals: true });
}
var f = t.bind();
new f();
f();