Home
last modified time | relevance | path

Searched refs:AST_PropAccess (Results 1 – 12 of 12) sorted by relevance

/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/
Doutput.js587 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)
Dast.js683 var AST_PropAccess = DEFNODE("PropAccess", "expression property", { variable
698 }, AST_PropAccess);
708 }, AST_PropAccess);
Dcompress.js468 } 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")) {
Dmozilla-ast.js335 def_to_moz(AST_PropAccess, function To_Moz_MemberExpression(M) {
Dparse.js1533 return expr instanceof AST_PropAccess || expr instanceof AST_SymbolRef;
/plugin/asciidocjs/node_modules/uglify-js/lib/
Doutput.js676 … 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 …]
Dutils.js256 } else if (p instanceof AST_PropAccess) {
Dcompress.js454 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 …]
Dscope.js336 && !(parent instanceof AST_PropAccess && parent.expression === node)) {
Dmozilla-ast.js892 def_to_moz(AST_PropAccess, function To_Moz_MemberExpression(M) {
Dparse.js2449 return expr instanceof AST_PropAccess && !expr.optional || expr instanceof AST_SymbolRef;
/plugin/asciidocjs/node_modules/uglify-js/bin/
Duglifyjs550 if (node instanceof UglifyJS.AST_Symbol || node instanceof UglifyJS.AST_PropAccess) {