/js/src/jit-test/tests/jaeger/recompile/bug648502.js

http://github.com/zpao/v8monkey · JavaScript · 12 lines · 11 code · 1 blank · 0 comment · 0 complexity · 3e3a577925ef9c255b2248610470d0d0 MD5 · raw file

  1. function f(x, y) {
  2. -(undefined ? 0 : 0);
  3. assertEq(y === y, true);
  4. return 0;
  5. }
  6. f(1, 2);
  7. {
  8. f(3, 3.14);
  9. f(true, f(4, 5));
  10. function g() {}
  11. }