(path, wait, source)
| 227 | this.doCommand(`logout`); |
| 228 | } |
| 229 | doModule(path, wait, source) { |
| 230 | let string = `\r\n<module path="${path}" line="${wait ? 1 : 0}"><![CDATA[`; |
| 231 | string += source; |
| 232 | string += `]]><module/>\r\n`; |
| 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; |