7929b63c89b5f01d96378b592c53e729fa9aede3f35dc56b20d0532d3975fb43fbba4fb0f6abba61c1f88f8428eb9136efc795d86f67ca8bb95ed9e811ac06 1.2 KB

1234567891011121314151617181920212223242526272829
  1. "use strict";
  2. function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
  3. 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); } }
  4. function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
  5. // Generated by CoffeeScript 2.5.1
  6. var _LineAppendor;
  7. module.exports = _LineAppendor = /*#__PURE__*/function () {
  8. function _LineAppendor(_config) {
  9. _classCallCheck(this, _LineAppendor);
  10. this._config = _config;
  11. this._lineNo = 0;
  12. }
  13. _createClass(_LineAppendor, [{
  14. key: "render",
  15. value: function render(inherited, options) {
  16. this._lineNo++;
  17. return '<none>' + this._render(inherited, options) + '</none>';
  18. }
  19. }]);
  20. return _LineAppendor;
  21. }();