You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
1.4 KiB
79 lines
1.4 KiB
9 years ago
|
|
||
|
/*!
|
||
|
* 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
|
||
|
};
|
||
|
};
|