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.
60 lines
1.8 KiB
60 lines
1.8 KiB
"use strict"; |
|
|
|
exports.__esModule = true; |
|
exports.default = void 0; |
|
|
|
var _container = _interopRequireDefault(require("./container")); |
|
|
|
var _types = require("./types"); |
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } |
|
|
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } |
|
|
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } |
|
|
|
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; } |
|
|
|
var Root = |
|
/*#__PURE__*/ |
|
function (_Container) { |
|
_inheritsLoose(Root, _Container); |
|
|
|
function Root(opts) { |
|
var _this; |
|
|
|
_this = _Container.call(this, opts) || this; |
|
_this.type = _types.ROOT; |
|
return _this; |
|
} |
|
|
|
var _proto = Root.prototype; |
|
|
|
_proto.toString = function toString() { |
|
var str = this.reduce(function (memo, selector) { |
|
memo.push(String(selector)); |
|
return memo; |
|
}, []).join(','); |
|
return this.trailingComma ? str + ',' : str; |
|
}; |
|
|
|
_proto.error = function error(message, options) { |
|
if (this._error) { |
|
return this._error(message, options); |
|
} else { |
|
return new Error(message); |
|
} |
|
}; |
|
|
|
_createClass(Root, [{ |
|
key: "errorGenerator", |
|
set: function set(handler) { |
|
this._error = handler; |
|
} |
|
}]); |
|
|
|
return Root; |
|
}(_container.default); |
|
|
|
exports.default = Root; |
|
module.exports = exports.default; |