Remove forgotten relic of ABI crash risk averse overloaded method change.
2 // Debugger.Script throws when applied as a constructor.
4 load(libdir + 'asserts.js');
6 assertThrowsInstanceOf(function() { Debugger.Script(); }, TypeError);
7 assertThrowsInstanceOf(function() { new Debugger.Script(); }, TypeError);