* Decreases indentation level of the current line by 1, if it is possible * @returns
()
| 134 | * @returns |
| 135 | */ |
| 136 | unindent(): this { |
| 137 | if (this.currentIndent > 0) { |
| 138 | this.currentIndent-- |
| 139 | } |
| 140 | return this |
| 141 | } |
| 142 | |
| 143 | /** |
| 144 | * Adds a symbol, that will replace the first character of the current line (including indentation) |
no outgoing calls
no test coverage detected