* Increases the indentation level by `indentation` spaces for the next line. * @param textBefore Text to emit before the newline (i.e. block open).
(textBefore?: string)
| 133 | * @param textBefore Text to emit before the newline (i.e. block open). |
| 134 | */ |
| 135 | public open(textBefore?: string) { |
| 136 | this.line(textBefore); |
| 137 | this.currIndent++; |
| 138 | } |
| 139 | |
| 140 | /** |
| 141 | * Decreases the indentation level by `indentation` for the next line. |
no test coverage detected