Home
last modified time | relevance | path

Searched refs:AST_Return (Results 1 – 10 of 10) sorted by relevance

/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/
Dcompress.js209 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 …]
Dscope.js468 else if (node instanceof AST_Return)
Dmozilla-ast.js236 map("ReturnStatement", AST_Return, "argument>value");
Dast.js440 var AST_Return = DEFNODE("Return", null, { variable
Dparse.js913 return new AST_Return({
Doutput.js878 DEFPRINT(AST_Return, function(self, output){
/plugin/asciidocjs/node_modules/uglify-js/lib/
Dcompress.js314 … 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 …]
Dmozilla-ast.js618 map("ReturnStatement", AST_Return, "argument>value");
Doutput.js1288 DEFPRINT(AST_Return, print_jump("return", "value"));
Dparse.js962 return new AST_Return({ value: value });