Files
blog/node_modules/stylus/lib/nodes/atblock.js
2025-07-16 16:30:56 +00:00

76 lines
1.1 KiB
JavaScript

/*!
* Stylus - @block
* Copyright (c) Automattic <developer.wordpress.com>
* MIT Licensed
*/
/**
* Module dependencies.
*/
var Node = require('./node');
module.exports = class Atblock extends Node {
/**
* Initialize a new `@block` node.
*
* @api public
*/
constructor() {
super();
}
/**
* Return `block` nodes.
*/
get nodes() {
return this.block.nodes;
}
/**
* Return a clone of this node.
*
* @return {Node}
* @api public
*/
clone(parent) {
var clone = new Atblock;
clone.block = this.block.clone(parent, clone);
clone.lineno = this.lineno;
clone.column = this.column;
clone.filename = this.filename;
return clone;
};
/**
* Return @block.
*
* @return {String}
* @api public
*/
toString() {
return '@block';
};
/**
* Return a JSON representation of this node.
*
* @return {Object}
* @api public
*/
toJSON() {
return {
__type: 'Atblock',
block: this.block,
lineno: this.lineno,
column: this.column,
fileno: this.fileno
};
};
};