summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/inline/bug651209.js
blob: 27e14a17b19b597fa792c8b6c3db2e31bd27ff48 (plain)
1
2
3
4
5
6
7
8
9
10
11
var i = 0;
try { test(); } catch (e) { }
function test() {
  var jstop  = 900;
  var code = '';
  code+=createCode(i);
  eval();
}
function createCode(i) {
  jstop+= +  +  + i + " string.';";
}