nesting.js 786 B

1234567891011121314151617181920212223242526272829303132
  1. "use strict";
  2. exports.__esModule = true;
  3. exports.default = void 0;
  4. var _node = _interopRequireDefault(require("./node"));
  5. var _types = require("./types");
  6. function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
  7. function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
  8. var Nesting =
  9. /*#__PURE__*/
  10. function (_Node) {
  11. _inheritsLoose(Nesting, _Node);
  12. function Nesting(opts) {
  13. var _this;
  14. _this = _Node.call(this, opts) || this;
  15. _this.type = _types.NESTING;
  16. _this.value = '&';
  17. return _this;
  18. }
  19. return Nesting;
  20. }(_node.default);
  21. exports.default = Nesting;
  22. module.exports = exports.default;