()
| 121 | |
| 122 | @computed() |
| 123 | public lineCount(): number { |
| 124 | const progress = this.codeProgress(); |
| 125 | if (progress !== null) { |
| 126 | return Math.round( |
| 127 | map(this.currentLineCount, this.newLineCount, progress), |
| 128 | ); |
| 129 | } |
| 130 | |
| 131 | return this.getLineCountOfTokenArray(this.parsed()); |
| 132 | } |
| 133 | |
| 134 | @computed() |
| 135 | protected parsed() { |
nothing calls this directly
no test coverage detected