(lineCount, writeSpaceIfNotIndenting)
| 114091 | } |
| 114092 | } |
| 114093 | function writeLinesAndIndent(lineCount, writeSpaceIfNotIndenting) { |
| 114094 | if (lineCount) { |
| 114095 | increaseIndent(); |
| 114096 | writeLine(lineCount); |
| 114097 | } |
| 114098 | else if (writeSpaceIfNotIndenting) { |
| 114099 | writeSpace(); |
| 114100 | } |
| 114101 | } |
| 114102 | // Helper function to decrease the indent if we previously indented. Allows multiple |
| 114103 | // previous indent values to be considered at a time. This also allows caller to just |
| 114104 | // call this once, passing in all their appropriate indent values, instead of needing |
no test coverage detected
searching dependent graphs…