What does the spec say happens to the this argument when a bound function (from Function.prototype.bind) is later invoked with new?function C(x) { this.x = x; } const B = C.bind({ tag: 'ignored' }); const obj = new B(5);