da8685db892e004c6ac191ff29535b19315ababcb4023c3137503f23c7265d4d1e2b4a9a258f87a9f761afa258c436a523ff67a48c1139d0db894cef0277cb 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 _LinePrependor;
  7. module.exports = _LinePrependor = /*#__PURE__*/function () {
  8. function _LinePrependor(_config) {
  9. _classCallCheck(this, _LinePrependor);
  10. this._config = _config;
  11. this._lineNo = -1;
  12. }
  13. _createClass(_LinePrependor, [{
  14. key: "render",
  15. value: function render(inherited, options) {
  16. this._lineNo++;
  17. return '<none>' + this._render(inherited, options) + '</none>';
  18. }
  19. }]);
  20. return _LinePrependor;
  21. }();