(noNewLineAtTheEnd?: boolean)
| 12 | } |
| 13 | |
| 14 | public EndBlock(noNewLineAtTheEnd?: boolean) { |
| 15 | this.DecreaseIntent(); |
| 16 | if (!this.newLine) { |
| 17 | this.writeStringNewLine(''); |
| 18 | } |
| 19 | |
| 20 | if (noNewLineAtTheEnd) { |
| 21 | this.writeString('}'); |
| 22 | } else { |
| 23 | this.writeStringNewLine('}'); |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | public IncreaseIntent() { |
| 28 | this.intent += 4; |
no test coverage detected