wasmer-c-api:

* adding `wasmer_import_object_new` and `wasmer_import_object_extend`
* adding test file `test-module-import-instantiate.c`
This commit is contained in:
Yaron Wittenstein
2019-08-01 14:06:25 +03:00
parent ab76755ade
commit f73180f45e
9 changed files with 285 additions and 19 deletions

View File

@ -51,7 +51,7 @@ pub struct ImportObject {
}
impl ImportObject {
/// Create a new `ImportObject`.
/// Create a new `ImportObject`.
pub fn new() -> Self {
Self {
map: Rc::new(RefCell::new(HashMap::new())),