Home
last modified time | relevance | path

Searched refs:AST_SimpleStatement (Results 1 – 13 of 13) sorted by relevance

/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/
Dcompress.js208 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 …]
Dmozilla-ast.js93 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) {
Dtransform.js91 _(AST_SimpleStatement, function(self, tw){
Dast.js146 var AST_SimpleStatement = DEFNODE("SimpleStatement", "body", { variable
372 body.push(new AST_SimpleStatement({
Doutput.js718 (stmt instanceof AST_SimpleStatement && stmt.body instanceof AST_String)
731 stmt instanceof AST_SimpleStatement &&
757 DEFPRINT(AST_SimpleStatement, function(self, output){
Dparse.js993 return new AST_SimpleStatement({ body: (tmp = expression(true), semicolon(), tmp) });
/plugin/asciidocjs/node_modules/uglify-js/lib/
Dcompress.js310 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 …]
Dutils.js260 } else if (p instanceof AST_SimpleStatement) {
Dmozilla-ast.js610 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) {
Dtransform.js65 DEF(AST_SimpleStatement, function(self, tw) {
Doutput.js921 if (stmt instanceof AST_SimpleStatement && stmt.body instanceof AST_String) {
946 DEFPRINT(AST_SimpleStatement, function(output) {
Dparse.js826 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/
Duglifyjs415 … if (!(toplevel instanceof UglifyJS.AST_Statement)) toplevel = new UglifyJS.AST_SimpleStatement({