1234567891011121314151617181920212223242526 |
- "use strict";
- function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
- var Container = require('postcss/lib/container');
- var NestedDeclaration =
- function (_Container) {
- _inheritsLoose(NestedDeclaration, _Container);
- function NestedDeclaration(defaults) {
- var _this;
- _this = _Container.call(this, defaults) || this;
- _this.type = 'decl';
- _this.isNested = true;
- if (!_this.nodes) _this.nodes = [];
- return _this;
- }
- return NestedDeclaration;
- }(Container);
- module.exports = NestedDeclaration;
|