()
| 290 | } |
| 291 | |
| 292 | toString() { |
| 293 | let str = `SCRIPT id=${this.id} file=${this.file}\n` + |
| 294 | `functions[${this.funktions.length}]:`; |
| 295 | this.funktions.forEach(fn => str += fn.toString()); |
| 296 | return str; |
| 297 | } |
| 298 | |
| 299 | getBytes() { |
| 300 | return this.bytesTotal; |