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.

38 lines
1.6 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 ID = function (_Node) {
  11. _inherits(ID, _Node);
  12. function ID(opts) {
  13. _classCallCheck(this, ID);
  14. var _this = _possibleConstructorReturn(this, _Node.call(this, opts));
  15. _this.type = _types.ID;
  16. return _this;
  17. }
  18. ID.prototype.toString = function toString() {
  19. return [this.rawSpaceBefore, String('#' + this.stringifyProperty("value")), this.rawSpaceAfter].join('');
  20. };
  21. return ID;
  22. }(_node2.default);
  23. exports.default = ID;
  24. module.exports = exports['default'];