(x: number, y: number, text: string, softWrap?: boolean[])
| 239 | } |
| 240 | |
| 241 | write(x: number, y: number, text: string, softWrap?: boolean[]): void { |
| 242 | if (!text) { |
| 243 | return |
| 244 | } |
| 245 | |
| 246 | this.operations.push({ |
| 247 | type: 'write', |
| 248 | x, |
| 249 | y, |
| 250 | text, |
| 251 | softWrap, |
| 252 | }) |
| 253 | } |
| 254 | |
| 255 | clip(clip: Clip) { |
| 256 | this.operations.push({ |
no test coverage detected