/*! * Stylus - Ternary * Copyright(c) 2010 LearnBoost <dev@learnboost.com> * MIT Licensed */ /** * Module dependencies. */ var Node = require('./node'); /** * Initialize a new `Ternary` with `cond`, `trueExpr` and `falseExpr`. * * @param {Expression} cond * @param {Expression} trueExpr * @param {Expression} falseExpr * @api public */ var Ternary = module.exports = function Ternary(cond, trueExpr, falseExpr){ Node.call(this); this.cond = cond; this.trueExpr = trueExpr; this.falseExpr = falseExpr; }; /** * Inherit from `Node.prototype`. */ Ternary.prototype.__proto__ = Node.prototype; /** * Return a clone of this node. * * @return {Node} * @api public */ Ternary.prototype.clone = function(){ var clone = new Ternary( this.cond.clone() , this.trueExpr.clone() , this.falseExpr.clone()); clone.lineno = this.lineno; clone.filename = this.filename; return clone; };