Tizen 2.1 base
[platform/framework/web/web-ui-fw.git] / libs / js / jquery-mobile-1.2.0 / node_modules / grunt / node_modules / uglify-js / test / unit / compress / test / ifreturn2.js
1 function x(a) {
2     if (typeof a === 'object')
3         return a;
4
5     if (a === 42)
6         return 0;
7
8     return a * 2;
9 }
10
11 function y(a) {
12     if (typeof a === 'object')
13         return a;
14
15     return null;
16 };