* Decreases the indentation level by `indentation` for the next line. * @param textAfter Text to emit in the line after indentation was decreased. * If `false` no line will be emitted at all, but the indent * counter will be decremented.
(textAfter?: string | false)
| 144 | * counter will be decremented. |
| 145 | */ |
| 146 | public close(textAfter?: string | false) { |
| 147 | this.currIndent--; |
| 148 | if (textAfter !== false) { |
| 149 | this.line(textAfter); |
| 150 | } |
| 151 | } |
| 152 | |
| 153 | /** |
| 154 | * Opens a code block. The formatting of the block is determined by `openBlockFormatter`. |
no test coverage detected