summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/recompile/bug647547.js
blob: 6f9c970aa7bc4096672066bbbe822118ec00aa3c (plain)
1
2
3
4
5
6
7
8
9
DoWhile(new DoWhileObject);
new DoWhileObject("", Boolean);
function DoWhileObject( d, e, s ) {
  this.whileExpression=e;
}
function DoWhile( object ) {
  while ( object.whileExpression ) eval(  );
  Boolean  
}