()
| 163 | } |
| 164 | |
| 165 | private indentedCurrentLine(): string { |
| 166 | const line = this.currentLine.padStart(this.currentLine.length + INDENT_SIZE * this.currentIndent) |
| 167 | if (this.marginSymbol) { |
| 168 | return this.marginSymbol + line.slice(1) |
| 169 | } |
| 170 | return line |
| 171 | } |
| 172 | } |