(funcType: FunctionType)
| 188 | } |
| 189 | |
| 190 | function mapFunction(funcType: FunctionType): ModuleFunction { |
| 191 | return { |
| 192 | kind: 'function', |
| 193 | parametersTypes: funcType.parameterTypes, |
| 194 | resultTypes: funcType.returnTypes, |
| 195 | }; |
| 196 | } |
| 197 | |
| 198 | function mapGlobal(global: GlobalType): ModuleGlobal { |
| 199 | return { |