feat(deprecated) Port Instance::exports().

This commit is contained in:
Ivan Enderlin
2020-05-22 14:30:47 +02:00
parent b4cfcd0f09
commit 23ae5bf7d3

View File

@@ -53,4 +53,12 @@ impl Instance {
.call(params)?
.into_vec())
}
#[deprecated(
since = "__NEXT_VERSION__",
note = "Please use `instance.exports` instead."
)]
pub fn exports(&self) -> &new::wasmer::Exports {
&self.new_instance.exports
}
}