stylus
Version:
Robust, expressive, and feature-rich CSS superset
106 lines (89 loc) • 1.77 kB
JavaScript
/*!
* Stylus - QueryList
* Copyright (c) Automattic <developer.wordpress.com>
* MIT Licensed
*/
/**
* Module dependencies.
*/
var Node = require('./node');
module.exports = class QueryList extends Node {
/**
* Initialize a new `QueryList`.
*
* @api public
*/
constructor() {
super();
this.nodes = [];
}
/**
* Return a clone of this node.
*
* @return {Node}
* @api public
*/
clone(parent) {
var clone = new QueryList;
clone.lineno = this.lineno;
clone.column = this.column;
clone.filename = this.filename;
for (var i = 0; i < this.nodes.length; ++i) {
clone.push(this.nodes[i].clone(parent, clone));
}
return clone;
};
/**
* Push the given `node`.
*
* @param {Node} node
* @api public
*/
push(node) {
this.nodes.push(node);
};
/**
* Merges this query list with the `other`.
*
* @param {QueryList} other
* @return {QueryList}
* @api private
*/
merge(other) {
var list = new QueryList
, merged;
this.nodes.forEach(function (query) {
for (var i = 0, len = other.nodes.length; i < len; ++i) {
merged = query.merge(other.nodes[i]);
if (merged) list.push(merged);
}
});
return list;
};
/**
* Return "<a>, <b>, <c>"
*
* @return {String}
* @api public
*/
toString() {
return '(' + this.nodes.map(function (node) {
return node.toString();
}).join(', ') + ')';
};
/**
* Return a JSON representation of this node.
*
* @return {Object}
* @api public
*/
toJSON() {
return {
__type: 'QueryList',
nodes: this.nodes,
lineno: this.lineno,
column: this.column,
filename: this.filename
};
};
};