(fn: CodeGenFunction)
| 2 | import { generateFunctionCode, generateInternalLibraryCall } from "../codegen-helpers"; |
| 3 | |
| 4 | const copyFnDef = (fn: CodeGenFunction) => ({ |
| 5 | ...fn, |
| 6 | inputs: [...fn.inputs.map(i => ({ ...i }))], |
| 7 | outputs: [...fn.outputs.map(i => ({ ...i }))], |
| 8 | }) |
| 9 | |
| 10 | function generateExternalFunction(fn: CodeGenFunction, structStorageName: string, libraryName: string) { |
| 11 | // const functionName = `test${fn.name.toPascalCase()}`; |
no outgoing calls
no test coverage detected