(start, end, content)
| 12 | } |
| 13 | class Chunk { |
| 14 | constructor(start, end, content) { |
| 15 | this.start = start; |
| 16 | this.end = end; |
| 17 | this.original = content; |
| 18 | this.intro = ''; |
| 19 | this.outro = ''; |
| 20 | this.content = content; |
| 21 | this.storeName = false; |
| 22 | this.edited = false; |
| 23 | Object.defineProperties(this, { |
| 24 | previous: { writable: true, value: null }, |
| 25 | next: { writable: true, value: null }, |
| 26 | }); |
| 27 | } |
| 28 | appendLeft(content) { |
| 29 | this.outro += content; |
| 30 | } |
nothing calls this directly
no outgoing calls
no test coverage detected