* Class representing one line
| 7 | * Class representing one line |
| 8 | */ |
| 9 | class Line { |
| 10 | // line position |
| 11 | position = -1; |
| 12 | // cells/chars |
| 13 | cells = []; |
| 14 | |
| 15 | /** |
| 16 | * Constructor. |
| 17 | * @param {Element} DOM_el - the char element (<span>) |
| 18 | */ |
| 19 | constructor(linePosition) { |
| 20 | this.position = linePosition; |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | /** |
| 25 | * Class representing one cell/char |
nothing calls this directly
no outgoing calls
no test coverage detected