blob: 2a19c5c515238286d8c8840725b5cf0c0a05eed4 (
plain)
1
2
3
4
5
6
7
8
9
|
// |jit-test| error: TypeError
new DoWhileObject;
function DoWhileObject(breakOut, breakIn, iterations, loops) {
loops.prototype = new DoWhile;
this.looping;
}
function DoWhile(object) {
do {} while (object);
}
|