123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- "use strict";
- exports.__esModule = true;
- exports.default = void 0;
- var _node = _interopRequireDefault(require("./node"));
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
- function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
- var Declaration = function (_Node) {
- _inheritsLoose(Declaration, _Node);
- function Declaration(defaults) {
- var _this;
- _this = _Node.call(this, defaults) || this;
- _this.type = 'decl';
- return _this;
- }
-
-
-
-
- return Declaration;
- }(_node.default);
- var _default = Declaration;
- exports.default = _default;
- module.exports = exports.default;
|