Home
last modified time | relevance | path

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

/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/
Dscope.js126 if (node instanceof AST_LabeledStatement) {
427 if (node instanceof AST_LabeledStatement) {
Dtransform.js86 _(AST_LabeledStatement, function(self, tw){
Dast.js203 var AST_LabeledStatement = DEFNODE("LabeledStatement", "label", { variable
1043 if (x instanceof AST_LabeledStatement && x.label.name == node.label.name)
Dmozilla-ast.js231 map("LabeledStatement", AST_LabeledStatement, "label>label, body>body");
Doutput.js752 DEFPRINT(AST_LabeledStatement, function(self, output){
1401 DEFMAP(AST_LabeledStatement, noop); // since the label symbol will mark it
Dcompress.js382 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);
Dparse.js989 return new AST_LabeledStatement({ body: stat, label: label });
/plugin/asciidocjs/node_modules/uglify-js/lib/
Dscope.js629 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;
Dtransform.js61 DEF(AST_LabeledStatement, function(self, tw) {
Dmozilla-ast.js613 map("LabeledStatement", AST_LabeledStatement, "label>label, body>body");
1244 if (parent instanceof AST_LabeledStatement && parent.label.name == node.name) {
Doutput.js941 DEFPRINT(AST_LabeledStatement, function(output) {
1917 AST_LabeledStatement,
Dcompress.js1310 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 …]
Dparse.js1028 return new AST_LabeledStatement({ body: stat, label: label });