(target: Files, source: Files)
| 105 | export const version = -1; |
| 106 | |
| 107 | function addFiles(target: Files, source: Files) { |
| 108 | for (const [p, f] of Object.entries(source)) { |
| 109 | target[p] = f; |
| 110 | } |
| 111 | } |
| 112 | |
| 113 | function addBytecodeWithinCapacity( |
| 114 | files: Files, |
no outgoing calls
no test coverage detected