(force)
| 18264 | } |
| 18265 | } |
| 18266 | function writeLine(force) { |
| 18267 | if (!lineStart || force) { |
| 18268 | output += newLine; |
| 18269 | lineCount++; |
| 18270 | linePos = output.length; |
| 18271 | lineStart = true; |
| 18272 | hasTrailingComment = false; |
| 18273 | } |
| 18274 | } |
| 18275 | function getTextPosWithWriteLine() { |
| 18276 | return lineStart ? output.length : (output.length + newLine.length); |
| 18277 | } |
no test coverage detected
searching dependent graphs…