(map)
| 32758 | |
| 32759 | var Buffer = function () { |
| 32760 | function Buffer(map) { |
| 32761 | (0, _classCallCheck3.default)(this, Buffer); |
| 32762 | this._map = null; |
| 32763 | this._buf = []; |
| 32764 | this._last = ""; |
| 32765 | this._queue = []; |
| 32766 | this._position = { |
| 32767 | line: 1, |
| 32768 | column: 0 |
| 32769 | }; |
| 32770 | this._sourcePosition = { |
| 32771 | identifierName: null, |
| 32772 | line: null, |
| 32773 | column: null, |
| 32774 | filename: null |
| 32775 | }; |
| 32776 | |
| 32777 | this._map = map; |
| 32778 | } |
| 32779 | |
| 32780 | Buffer.prototype.get = function get() { |
| 32781 | this._flush(); |
nothing calls this directly
no test coverage detected