( abiPiece: RawAbiDefinition, registerStruct: (struct: StructType) => void, )
| 286 | } |
| 287 | |
| 288 | function parseFallback( |
| 289 | abiPiece: RawAbiDefinition, |
| 290 | registerStruct: (struct: StructType) => void, |
| 291 | ): FunctionWithoutInputDeclaration { |
| 292 | debug(`Parsing fallback declaration`) |
| 293 | |
| 294 | return { |
| 295 | name: 'fallback', |
| 296 | inputs: [], |
| 297 | outputs: parseOutputs(registerStruct, abiPiece.outputs), |
| 298 | stateMutability: findStateMutability(abiPiece), |
| 299 | } |
| 300 | } |
| 301 | |
| 302 | function parseFunctionDeclaration( |
| 303 | abiPiece: RawAbiDefinition, |
no test coverage detected
searching dependent graphs…