Sha256: 072d6879de773d480e1e8e983a35ac419dabb957550691ecaf9339124938b7fc

Contents?: true

Size: 1.43 KB

Versions: 41

Compression:

Stored size: 1.43 KB

Contents

/*!
 * Stylus - If
 * Copyright (c) Automattic <developer.wordpress.com>
 * MIT Licensed
 */

/**
 * Module dependencies.
 */

var Node = require('./node');

/**
 * Initialize a new `If` with the given `cond`.
 *
 * @param {Expression} cond
 * @param {Boolean|Block} negate, block
 * @api public
 */

var If = module.exports = function If(cond, negate){
  Node.call(this);
  this.cond = cond;
  this.elses = [];
  if (negate && negate.nodeName) {
    this.block = negate;
  } else {
    this.negate = negate;
  }
};

/**
 * Inherit from `Node.prototype`.
 */

If.prototype.__proto__ = Node.prototype;

/**
 * Return a clone of this node.
 * 
 * @return {Node}
 * @api public
 */

If.prototype.clone = function(parent){
  var clone = new If();
  clone.cond = this.cond.clone(parent, clone);
  clone.block = this.block.clone(parent, clone);
  clone.elses = this.elses.map(function(node){ return node.clone(parent, clone); });
  clone.negate = this.negate;
  clone.postfix = this.postfix;
  clone.lineno = this.lineno;
  clone.column = this.column;
  clone.filename = this.filename;
  return clone;
};

/**
 * Return a JSON representation of this node.
 *
 * @return {Object}
 * @api public
 */

If.prototype.toJSON = function(){
  return {
    __type: 'If',
    cond: this.cond,
    block: this.block,
    elses: this.elses,
    negate: this.negate,
    postfix: this.postfix,
    lineno: this.lineno,
    column: this.column,
    filename: this.filename
  };
};

Version data entries

41 entries across 22 versions & 3 rubygems

Version Path
epuber-stylus-source-0.56.0 vendor/lib/nodes/if.js
epuber-stylus-source-0.54.8 vendor/lib/nodes/if.js
ela-4.1.6 node_modules/nib/node_modules/stylus/lib/nodes/if.js
ela-4.1.6 node_modules/stylus/lib/nodes/if.js
ela-4.1.5 node_modules/nib/node_modules/stylus/lib/nodes/if.js
ela-4.1.5 node_modules/stylus/lib/nodes/if.js
ela-4.1.4 node_modules/nib/node_modules/stylus/lib/nodes/if.js
ela-4.1.4 node_modules/stylus/lib/nodes/if.js
ela-4.1.3 node_modules/stylus/lib/nodes/if.js
ela-4.1.3 node_modules/nib/node_modules/stylus/lib/nodes/if.js
ela-4.1.2 node_modules/stylus/lib/nodes/if.js
ela-4.1.2 node_modules/nib/node_modules/stylus/lib/nodes/if.js
ela-4.1.1 node_modules/nib/node_modules/stylus/lib/nodes/if.js
ela-4.1.1 node_modules/stylus/lib/nodes/if.js
ela-4.1.0 node_modules/nib/node_modules/stylus/lib/nodes/if.js
ela-4.1.0 node_modules/stylus/lib/nodes/if.js
ela-4.0.0 node_modules/stylus/lib/nodes/if.js
ela-4.0.0 node_modules/nib/node_modules/stylus/lib/nodes/if.js
ela-3.4.3 node_modules/nib/node_modules/stylus/lib/nodes/if.js
ela-3.4.3 node_modules/stylus/lib/nodes/if.js