/js/src/jit-test/tests/jaeger/recompile/bug657288.js
http://github.com/zpao/v8monkey · JavaScript · 9 lines · 8 code · 0 blank · 1 comment · 1 complexity · 22f62411a02e4029bc8bbb227d5a841e MD5 · raw file
- // |jit-test| error: TypeError
- new DoWhileObject;
- function DoWhileObject(breakOut, breakIn, iterations, loops) {
- loops.prototype = new DoWhile;
- this.looping;
- }
- function DoWhile(object) {
- do {} while (object);
- }