(path, name, string)
| 337 | } |
| 338 | } |
| 339 | writeDirectoryFileString(path, name, string) { |
| 340 | let segments = name.split('/'); |
| 341 | if (segments.length > 1) |
| 342 | path = this.createDirectories(path, ...segments.slice(0, -1)); |
| 343 | path += this.slash + segments[segments.length - 1]; |
| 344 | this.writeFileString(path, string); |
| 345 | } |
| 346 | |
| 347 | listSpecifiers(path) @ "Tool_prototype_listSpecifiers" |
| 348 | parseModule(module) { |
no test coverage detected