Searched refs:AST_PropAccess (Results 1 – 12 of 12) sorted by relevance
| /plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/ |
| D | output.js | 587 return p instanceof AST_PropAccess && p.expression === this 597 || p instanceof AST_PropAccess // (1, {foo:2}).foo or (1, {foo:2})["foo"] ==> 2 614 if (p instanceof AST_PropAccess && p.expression === this) 628 PARENS(AST_PropAccess, function(output){ 656 && p instanceof AST_PropAccess 665 && (p instanceof AST_PropAccess // (new Date).getTime(), (new Date)["getTime"]() 672 if (p instanceof AST_PropAccess && p.expression === this) { 695 if (p instanceof AST_PropAccess && p.expression === this)
|
| D | ast.js | 683 var AST_PropAccess = DEFNODE("PropAccess", "expression property", { variable 698 }, AST_PropAccess); 708 }, AST_PropAccess);
|
| D | compress.js | 468 } else if (parent instanceof AST_PropAccess && parent.expression === node) { 550 … && (val instanceof AST_PropAccess || val instanceof AST_SymbolRef && val.name == "eval")) { 1387 } while (parent instanceof AST_PropAccess && parent.expression === node); 1638 def(AST_PropAccess, function(compressor){ 3068 if (exp instanceof AST_PropAccess) { 3185 || e instanceof AST_PropAccess 3340 : !(expr instanceof AST_PropAccess) || compressor.option("screw_ie8")) {
|
| D | mozilla-ast.js | 335 def_to_moz(AST_PropAccess, function To_Moz_MemberExpression(M) {
|
| D | parse.js | 1533 return expr instanceof AST_PropAccess || expr instanceof AST_SymbolRef;
|
| /plugin/asciidocjs/node_modules/uglify-js/lib/ |
| D | output.js | 676 … if (output.option("webkit") && p instanceof AST_PropAccess && p.expression === this) return true; 705 if (p instanceof AST_PropAccess) return p.expression === this; 746 || p instanceof AST_PropAccess && p.expression === this 780 if (p instanceof AST_PropAccess) return p.expression === this; 789 if (!(parent instanceof AST_Call || parent instanceof AST_PropAccess)) return false; 793 PARENS(AST_PropAccess, function(output) { 816 && p instanceof AST_PropAccess 833 if (p instanceof AST_PropAccess) return true; 842 … return p instanceof AST_PropAccess && p.expression === this && /^0/.test(make_num(this.value)); 859 if (p instanceof AST_PropAccess) return p.expression === self; [all …]
|
| D | utils.js | 256 } else if (p instanceof AST_PropAccess) {
|
| D | compress.js | 454 if (parent instanceof AST_PropAccess) { 766 } else if (parent instanceof AST_PropAccess && parent.expression === node) { 1757 if (lhs instanceof AST_PropAccess) { 1823 return val instanceof AST_PropAccess 1926 } while (node instanceof AST_PropAccess); 2526 if (!(lhs instanceof AST_PropAccess)) return false; 2546 return !(parent instanceof AST_PropAccess && parent.expression === node) 2623 return side_effects || lhs instanceof AST_PropAccess || may_modify(lhs); 2629 if (node instanceof AST_PropAccess) { 2661 if (sym instanceof AST_PropAccess) return true; [all …]
|
| D | scope.js | 336 && !(parent instanceof AST_PropAccess && parent.expression === node)) {
|
| D | mozilla-ast.js | 892 def_to_moz(AST_PropAccess, function To_Moz_MemberExpression(M) {
|
| D | parse.js | 2449 return expr instanceof AST_PropAccess && !expr.optional || expr instanceof AST_SymbolRef;
|
| /plugin/asciidocjs/node_modules/uglify-js/bin/ |
| D | uglifyjs | 550 if (node instanceof UglifyJS.AST_Symbol || node instanceof UglifyJS.AST_PropAccess) {
|