michael@0: // |jit-test| error: TypeError michael@0: new DoWhileObject; michael@0: function DoWhileObject(breakOut, breakIn, iterations, loops) { michael@0: loops.prototype = new DoWhile; michael@0: this.looping; michael@0: } michael@0: function DoWhile(object) { michael@0: do {} while (object); michael@0: }