michael@0: // vim: set ts=8 sts=4 et sw=4 tw=99: michael@0: michael@0: function F() { michael@0: var T = { }; michael@0: try { michael@0: throw 12; michael@0: } catch (e) { michael@0: T.x = 5; michael@0: return T; michael@0: } michael@0: } michael@0: michael@0: assertEq((new F()).x, 5); michael@0: