/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
- function f(x, y) {
- -(undefined ? 0 : 0);
- assertEq(y === y, true);
- return 0;
- }
- f(1, 2);
- {
- f(3, 3.14);
- f(true, f(4, 5));
- function g() {}
- }