(module)
| 244 | |
| 245 | |
| 246 | def get_function_exports(module): |
| 247 | rtn = {} |
| 248 | for e in module.get_exports(): |
| 249 | if e.kind == webassembly.ExternType.FUNC: |
| 250 | rtn[e.name] = module.get_function_type(e.index) |
| 251 | return rtn |
| 252 | |
| 253 | |
| 254 | def get_other_exports(module): |
no test coverage detected