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.

35 lines
1.5 KiB

4 years ago
  1. 'use strict';
  2. exports.__esModule = true;
  3. var _node = require('./node');
  4. var _node2 = _interopRequireDefault(_node);
  5. var _types = require('./types');
  6. function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
  7. function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
  8. function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
  9. function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
  10. var Nesting = function (_Node) {
  11. _inherits(Nesting, _Node);
  12. function Nesting(opts) {
  13. _classCallCheck(this, Nesting);
  14. var _this = _possibleConstructorReturn(this, _Node.call(this, opts));
  15. _this.type = _types.NESTING;
  16. _this.value = '&';
  17. return _this;
  18. }
  19. return Nesting;
  20. }(_node2.default);
  21. exports.default = Nesting;
  22. module.exports = exports['default'];