(tool, signatures)
| 289 | } |
| 290 | } |
| 291 | addMCRunDTSFile(tool, signatures) { |
| 292 | const source = tool.tmpPath + tool.slash + "mc.ffi.d.ts"; |
| 293 | const file = new TabFile(source, tool); |
| 294 | this.generateDTSFile(file, signatures, "ffi"); |
| 295 | file.close(); |
| 296 | const target = "ffi"; |
| 297 | tool.dtsFiles.push({ target, source }); |
| 298 | } |
| 299 | addSources(tool, sources) { |
| 300 | const files = tool.cFiles; |
| 301 | const folders = tool.cFolders; |
no test coverage detected