Sha256: 602a93946b16bf3cb62c2d469124822818ad0ca1e6d0115228b5c914747bc900

Contents?: true

Size: 998 Bytes

Versions: 23

Compression:

Stored size: 998 Bytes

Contents

/*!
 * Stylus - If
 * Copyright(c) 2010 LearnBoost <dev@learnboost.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(){
  var cond = this.cond.clone()
    , block = this.block.clone();
  var clone = new If(cond, block);
  clone.elses = this.elses.map(function(node){ return node.clone(); });
  clone.negate = this.negate;
  clone.lineno = this.lineno;
  clone.filename = this.filename;
  return clone;
};

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
stylus-source-0.22.5 vendor/lib/nodes/if.js
stylus-source-0.22.4 vendor/lib/nodes/if.js
stylus-source-0.22.3 vendor/lib/nodes/if.js
stylus-source-0.22.2 vendor/lib/nodes/if.js
stylus-source-0.22.1 vendor/lib/nodes/if.js
stylus-source-0.22.0 vendor/lib/nodes/if.js
stylus-source-0.21.2 vendor/lib/nodes/if.js
stylus-source-0.21.1 vendor/lib/nodes/if.js
stylus-source-0.21.0 vendor/lib/nodes/if.js
stylus-source-0.20.1 vendor/lib/nodes/if.js
stylus-source-0.20.0 vendor/lib/nodes/if.js
stylus-source-0.19.8 vendor/lib/nodes/if.js
stylus-source-0.19.7 vendor/lib/nodes/if.js
stylus-source-0.19.6 vendor/lib/nodes/if.js
stylus-source-0.19.5 vendor/lib/nodes/if.js
stylus-source-0.19.4 vendor/lib/nodes/if.js
stylus-source-0.19.3 vendor/lib/nodes/if.js
stylus-source-0.19.2 vendor/lib/nodes/if.js
stylus-source-0.19.1 vendor/lib/nodes/if.js
stylus-source-0.19.0 vendor/lib/nodes/if.js