(data?: string)
| 66 | } |
| 67 | |
| 68 | public writeStringNewLine(data?: string): void { |
| 69 | if (data) { |
| 70 | this.writeString(data); |
| 71 | } |
| 72 | |
| 73 | this.parts.push('\n'); |
| 74 | this.newLine = true; |
| 75 | if (this.intent > 0) { |
| 76 | this.pendingIntent = true; |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | public cancelNewLine() { |
| 81 | if (this.newLine) { |
no test coverage detected