/js/src/jit-test/tests/jaeger/bug657890.js

http://github.com/zpao/v8monkey · JavaScript · 6 lines · 6 code · 0 blank · 0 comment · 1 complexity · b46605022d7830d8e3fbcb45257af068 MD5 · raw file

  1. function f() {};
  2. var x;
  3. for(var i=0; i<200; i++) {
  4. x = f.bind(x, x, 2);
  5. gc();
  6. }