Searched refs:AST_Return (Results 1 – 10 of 10) sorted by relevance
| /plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/ |
| D | compress.js | 209 return make_node(AST_Return, node, { 213 if (!insert && node instanceof AST_Return) { 279 … || parent instanceof AST_Return && node === parent.value && node.scope !== d.scope 894 case (in_lambda && stat instanceof AST_Return && !stat.value && ret.length == 0): 901 if (stat.body instanceof AST_Return) { 906 || (ret[0] instanceof AST_Return && !ret[0].value)) 917 … if (ret[0] instanceof AST_Return && stat.body.value && ret[0].value && !stat.alternative) { 926 if (multiple_if_returns && (ret.length == 0 || ret[0] instanceof AST_Return) 930 stat.alternative = ret[0] || make_node(AST_Return, stat, { 959 … && i > 0 && statements[i - 1] instanceof AST_If && statements[i - 1].body instanceof AST_Return [all …]
|
| D | scope.js | 468 else if (node instanceof AST_Return)
|
| D | mozilla-ast.js | 236 map("ReturnStatement", AST_Return, "argument>value");
|
| D | ast.js | 440 var AST_Return = DEFNODE("Return", null, { variable
|
| D | parse.js | 913 return new AST_Return({
|
| D | output.js | 878 DEFPRINT(AST_Return, function(self, output){
|
| /plugin/asciidocjs/node_modules/uglify-js/lib/ |
| D | compress.js | 314 … return transform ? transform(node) : make_node(AST_Return, node, { value: node.body }); 316 } else if (node instanceof AST_Return) { 921 if (node instanceof AST_Return) return hit = true; 2596 if (stat instanceof AST_Return) { 3551 if (in_lambda && declare_only && !next && stat instanceof AST_Return 3643 if (stat instanceof AST_If && stat.body instanceof AST_Return) { 3645 var in_bool = stat.body.in_bool || next instanceof AST_Return && next.in_bool; 3647 if (!stat.alternative && next instanceof AST_Return 3667 stat.alternative = make_node(AST_Return, stat, { value: null }); 3680 || prev_stat instanceof AST_If && prev_stat.body instanceof AST_Return) [all …]
|
| D | mozilla-ast.js | 618 map("ReturnStatement", AST_Return, "argument>value");
|
| D | output.js | 1288 DEFPRINT(AST_Return, print_jump("return", "value"));
|
| D | parse.js | 962 return new AST_Return({ value: value });
|