dart-archive / wasm

Utilities for loading and running WASM modules from Dart code
https://pub.dev/packages/wasm
BSD 3-Clause "New" or "Revised" License
312 stars 24 forks source link

Add a wasm binding generator #120

Closed modulovalue closed 1 year ago

modulovalue commented 1 year ago

This PR contains a code generator that takes as input a minimal description of a WASM module, and outputs a String containing a valid Dart program that can be used to safely link to the imports and exports during the construction of a wasm module.

This PR only contains the generator part, a data source is still needed. In a follow up PR, a Wasmer based data source will be implemented.