Searched refs:AST_SimpleStatement (Results 1 – 13 of 13) sorted by relevance
| /plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/ |
| D | compress.js | 208 if (insert && node instanceof AST_SimpleStatement) { 216 return value ? make_node(AST_SimpleStatement, node, { 220 return make_node(AST_SimpleStatement, node, { 803 return make_node(AST_SimpleStatement, func, { 909 var cond = make_node(AST_SimpleStatement, stat.condition, { 960 && ret.length == 1 && in_lambda && ret[0] instanceof AST_SimpleStatement 1070 if (seq) ret.push(make_node(AST_SimpleStatement, seq, { 1076 if (stat instanceof AST_SimpleStatement) { 1153 prev = stat instanceof AST_SimpleStatement ? stat : null; 1447 return best_of_expression(make_node(AST_SimpleStatement, ast1, { [all …]
|
| D | mozilla-ast.js | 93 return new AST_SimpleStatement({ 286 def_to_moz(AST_SimpleStatement, function To_Moz_ExpressionStatement(M) { 603 … if (node.body[0] instanceof AST_SimpleStatement && node.body[0].body instanceof AST_String) {
|
| D | transform.js | 91 _(AST_SimpleStatement, function(self, tw){
|
| D | ast.js | 146 var AST_SimpleStatement = DEFNODE("SimpleStatement", "body", { variable 372 body.push(new AST_SimpleStatement({
|
| D | output.js | 718 (stmt instanceof AST_SimpleStatement && stmt.body instanceof AST_String) 731 stmt instanceof AST_SimpleStatement && 757 DEFPRINT(AST_SimpleStatement, function(self, output){
|
| D | parse.js | 993 return new AST_SimpleStatement({ body: (tmp = expression(true), semicolon(), tmp) });
|
| /plugin/asciidocjs/node_modules/uglify-js/lib/ |
| D | compress.js | 310 if (node instanceof AST_Directive) node = make_node(AST_SimpleStatement, node, { 313 if (node instanceof AST_SimpleStatement) { 320 return make_node(AST_SimpleStatement, node, { 361 if (stat instanceof AST_SimpleStatement) return stat.body; 374 if (!is_statement(self)) self = make_node(AST_SimpleStatement, self, { body: self }); 774 if (parent instanceof AST_SimpleStatement) return; 2000 } else if (node.init instanceof AST_SimpleStatement) { 2886 } else if (expr instanceof AST_SimpleStatement) { 2938 … if (parent instanceof AST_SimpleStatement) return find_stop_unused(parent, level + 1); 3035 … if (parent instanceof AST_SimpleStatement) return find_stop_unused(parent, level + 1); [all …]
|
| D | utils.js | 260 } else if (p instanceof AST_SimpleStatement) {
|
| D | mozilla-ast.js | 610 map("ExpressionStatement", AST_SimpleStatement, "expression>body"); 1114 if (!(stat instanceof AST_SimpleStatement)) break; 1302 … if (node.body[0] instanceof AST_SimpleStatement && node.body[0].body instanceof AST_String) {
|
| D | transform.js | 65 DEF(AST_SimpleStatement, function(self, tw) {
|
| D | output.js | 921 if (stmt instanceof AST_SimpleStatement && stmt.body instanceof AST_String) { 946 DEFPRINT(AST_SimpleStatement, function(output) {
|
| D | parse.js | 826 return dir ? new AST_Directive(body) : new AST_SimpleStatement({ body: body }); 1034 return new AST_SimpleStatement({ body: body });
|
| /plugin/asciidocjs/node_modules/uglify-js/bin/ |
| D | uglifyjs | 415 … if (!(toplevel instanceof UglifyJS.AST_Statement)) toplevel = new UglifyJS.AST_SimpleStatement({
|