(tool, signatures)
| 253 | tool.cFiles.push({ target, source }); |
| 254 | } |
| 255 | addMCConfigDTSFile(tool, signatures) { |
| 256 | const source = tool.tmpPath + tool.slash + "mc.ffi.d.ts"; |
| 257 | const file = new TabFile(source, tool); |
| 258 | this.generateDTSFile(file, signatures, "mc/ffi"); |
| 259 | file.close(); |
| 260 | const target = "mc" + tool.slash + "ffi"; |
| 261 | tool.dtsFiles.push({ target, source }); |
| 262 | } |
| 263 | addMCConfigJSFile(tool, description) { |
| 264 | const folder = "mc"; |
| 265 | tool.createDirectory(tool.modulesPath + tool.slash + folder); |
no test coverage detected