(relativePath: string, content: string)
| 208 | // ── File writing ───────────────────────────────────────────────────────────── |
| 209 | |
| 210 | async function writeGeneratedFile(relativePath: string, content: string): Promise<string> { |
| 211 | const fullPath = path.join(REPO_ROOT, relativePath); |
| 212 | await fs.mkdir(path.dirname(fullPath), { recursive: true }); |
| 213 | await fs.writeFile(fullPath, content, "utf-8"); |
| 214 | console.log(` ✓ ${relativePath}`); |
| 215 | return fullPath; |
| 216 | } |
| 217 | |
| 218 | // ── Java type mapping ───────────────────────────────────────────────────────── |
| 219 |
no test coverage detected
searching dependent graphs…