Home
last modified time | relevance | path

Searched refs:AST_Binary (Results 1 – 16 of 16) sorted by relevance

/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/
Dcompress.js352 if (node instanceof AST_Binary
723 || (parent instanceof AST_Binary
1122 if (node instanceof AST_Binary && node.operator == "in")
1257 def(AST_Binary, function(pure_getters) {
1299 def(AST_Binary, function(){
1328 def(AST_Binary, function(compressor){
1354 def(AST_Binary, function(compressor){
1584 def(AST_Binary, function(c){
1698 def(AST_Binary, function(compressor, first_in_statement){
1799 def(AST_Binary, function(compressor){
[all …]
Doutput.js595 || p instanceof AST_Binary // 1 + (2, 3) + 4 ==> 8
605 PARENS(AST_Binary, function(output){
617 if (p instanceof AST_Binary) {
686 if (p instanceof AST_Binary && !(p instanceof AST_Assign))
1046 if (node instanceof AST_Binary && node.operator == "in")
1142 DEFPRINT(AST_Binary, function(self, output){
1311 if (p instanceof AST_Binary && /^in/.test(p.operator) && p.left === self)
Dmozilla-ast.js247 map("BinaryExpression", AST_Binary, "operator=operator, left>left, right>right");
248 map("LogicalExpression", AST_Binary, "operator=operator, left>left, right>right");
354 def_to_moz(AST_Binary, function To_Moz_BinaryExpression(M) {
Dast.js731 var AST_Binary = DEFNODE("Binary", "left operator right", { variable
764 }, AST_Binary);
1034 if (!(p instanceof AST_Binary && (p.operator == "&&" || p.operator == "||")))
Dtransform.js195 _(AST_Binary, function(self, tw){
Dutils.js354 (p instanceof AST_Binary && p.left === node ) ||
Dscope.js524 else if (node instanceof AST_Unary || node instanceof AST_Binary)
Dparse.js1498 return expr_op(new AST_Binary({
/plugin/asciidocjs/node_modules/uglify-js/lib/
Dcompress.js434 if (parent instanceof AST_Binary) {
745 if (parent instanceof AST_Binary) return lazy_op[parent.operator];
1017 return make_node(AST_Binary, node, {
1099 def(AST_Binary, function(tw) {
1150 } else if (node instanceof AST_Binary) {
1514 return make_node(AST_Binary, node, {
2162 folded = make_node(AST_Binary, candidate, {
2171 right: make_node(AST_Binary, node, {
2559 … if (parent instanceof AST_Binary) return parent.left !== node && lazy_op[parent.operator];
2822 } else if (expr instanceof AST_Binary) {
[all …]
Doutput.js483 if (parent instanceof AST_Binary) return parent.left === node;
695 if (p instanceof AST_Binary) return p.operator == "**" && p.left === this;
721 || p instanceof AST_Binary
759 PARENS(AST_Binary, function(output) {
767 if (p instanceof AST_Binary) {
850 if (p instanceof AST_Binary) return !(p instanceof AST_Assign);
1439 if (node instanceof AST_Binary && node.operator == "in") return parens = true;
1564 DEFPRINT(AST_Binary, function(output) {
Dutils.js248 } else if (p instanceof AST_Binary) {
Dpropmangle.js236 if (node instanceof AST_Binary) {
Dmozilla-ast.js628 map("BinaryExpression", AST_Binary, "operator=operator, left>left, right>right");
629 map("LogicalExpression", AST_Binary, "operator=operator, left>left, right>right");
919 def_to_moz(AST_Binary, function To_Moz_BinaryExpression(M) {
Dtransform.js185 DEF(AST_Binary, function(self, tw) {
Dparse.js2415 return expr_op(new AST_Binary({
/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/bin/
Duglifyjs581 if (node instanceof UglifyJS.AST_Symbol || node instanceof UglifyJS.AST_Binary) {