Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
1 // dumb basics of uncaughtExceptionHook
3 load(libdir + 'asserts.js');
5 var desc = Object.getOwnPropertyDescriptor(Debugger.prototype, "uncaughtExceptionHook");
6 assertEq(typeof desc.get, 'function');
7 assertEq(typeof desc.set, 'function');
9 assertThrowsInstanceOf(function () { Debugger.prototype.uncaughtExceptionHook = null; }, TypeError);
11 var g = newGlobal();
12 var dbg = new Debugger(g);
13 assertEq(desc.get.call(dbg), null);
14 assertThrowsInstanceOf(function () { dbg.uncaughtExceptionHook = []; }, TypeError);
15 assertThrowsInstanceOf(function () { dbg.uncaughtExceptionHook = 3; }, TypeError);
16 dbg.uncaughtExceptionHook = Math.sin;
17 assertEq(dbg.uncaughtExceptionHook, Math.sin);
18 dbg.uncaughtExceptionHook = null;
19 assertEq(dbg.uncaughtExceptionHook, null);