Remove generated spectest codes from repo.

This commit is contained in:
Lachlan Sneff
2019-01-12 23:48:21 -05:00
parent a7ffb44bbc
commit a9e58203f2
72 changed files with 159 additions and 236465 deletions

View File

@ -42,7 +42,8 @@ impl Module {
}
/// Instantiate a webassembly module with the provided imports.
pub fn instantiate(&self, imports: &Imports) -> Result<Instance, String> {
pub fn instantiate(&self, imports: &Imports) -> Result<Instance, String>
{
Instance::new(Rc::clone(&self.0), imports)
}
}