(path, wait, source)
| 233 | this.output.write(this.encoder.encode(string)); |
| 234 | } |
| 235 | doScript(path, wait, source) { |
| 236 | let string = `\r\n<script path="${path}" line="${wait ? 1 : 0}"><![CDATA[`; |
| 237 | string += source; |
| 238 | string += `]]><script/>\r\n`; |
| 239 | this.output.write(this.encoder.encode(string)); |
| 240 | } |
| 241 | doSetAllBreakpoint(breakpoints, atStart, atExceptions) { |
| 242 | let string = `\r\n<set-all-breakpoints>`; |
| 243 | if (atStart) |