Searched refs:AST_LabeledStatement (Results 1 – 13 of 13) sorted by relevance
/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/ |
D | scope.js | 126 if (node instanceof AST_LabeledStatement) { 427 if (node instanceof AST_LabeledStatement) {
|
D | transform.js | 86 _(AST_LabeledStatement, function(self, tw){
|
D | ast.js | 203 var AST_LabeledStatement = DEFNODE("LabeledStatement", "label", { variable 1043 if (x instanceof AST_LabeledStatement && x.label.name == node.label.name)
|
D | mozilla-ast.js | 231 map("LabeledStatement", AST_LabeledStatement, "label>label, body>body");
|
D | output.js | 752 DEFPRINT(AST_LabeledStatement, function(self, output){ 1401 DEFMAP(AST_LabeledStatement, noop); // since the label symbol will mark it
|
D | compress.js | 382 if (node instanceof AST_LabeledStatement) { 1791 def(AST_LabeledStatement, function(compressor){ 1877 OPT(AST_LabeledStatement, function(self, compressor){ 2147 if (node instanceof AST_LabeledStatement && node.body instanceof AST_For) { 2469 (parent instanceof AST_LabeledStatement ? parent : self).walk(tw);
|
D | parse.js | 989 return new AST_LabeledStatement({ body: stat, label: label });
|
/plugin/asciidocjs/node_modules/uglify-js/lib/ |
D | scope.js | 629 if (node instanceof AST_LabeledStatement) save_nesting = lname; 675 … if (node instanceof AST_LabeledStatement && !(options.v8 && in_label(tw))) lname = save_nesting; 727 if (parent instanceof AST_LabeledStatement) return true;
|
D | transform.js | 61 DEF(AST_LabeledStatement, function(self, tw) {
|
D | mozilla-ast.js | 613 map("LabeledStatement", AST_LabeledStatement, "label>label, body>body"); 1244 if (parent instanceof AST_LabeledStatement && parent.label.name == node.name) {
|
D | output.js | 941 DEFPRINT(AST_LabeledStatement, function(output) { 1917 AST_LabeledStatement,
|
D | compress.js | 1310 def(AST_LabeledStatement, function(tw) { 2058 } else if (block instanceof AST_LabeledStatement) { 3893 } else if (stat instanceof AST_LabeledStatement) { 3914 } else if (self instanceof AST_LabeledStatement) { 5880 def(AST_LabeledStatement, function(compressor) { 6023 def(AST_LabeledStatement, function(compressor) { 6195 OPT(AST_LabeledStatement, function(self, compressor) { 6473 if (node instanceof AST_LabeledStatement) { 6810 if (block instanceof AST_LabeledStatement) block = block.body; 7636 if (node instanceof AST_LabeledStatement && node.body instanceof AST_For) { [all …]
|
D | parse.js | 1028 return new AST_LabeledStatement({ body: stat, label: label });
|