()
| 150 | }, |
| 151 | |
| 152 | parseSourceLines() { |
| 153 | return getOutput().split('\n') |
| 154 | .map((line) => line.match(/(?:\*|>)?\s*(\d+)/)) |
| 155 | .filter((match) => match !== null) |
| 156 | .map((match) => +match[1]); |
| 157 | }, |
| 158 | |
| 159 | writeLine(input, flush = true) { |
| 160 | if (flush) { |