Searched refs:eliminate_returns (Results 1 – 1 of 1) sorted by relevance
/plugin/asciidocjs/node_modules/uglify-js/lib/ |
D | compress.js | 3702 if (declare_only && jump && jump === next) eliminate_returns(stat); 3881 function eliminate_returns(stat, keep_throws, in_block) { function 3891 stat.body = eliminate_returns(stat.body, keep_throws); 3892 … if (stat.alternative) stat.alternative = eliminate_returns(stat.alternative, keep_throws); 3894 stat.body = eliminate_returns(stat.body, keep_throws); 3897 if (stat.bcatch) eliminate_returns(stat.bcatch, keep_throws); 3898 var trimmed = eliminate_returns(stat.body.pop(), true, true); 3902 var trimmed = eliminate_returns(stat.body.pop(), keep_throws, true);
|