Fix some compilation errors in make test-js

This commit is contained in:
Felix Schütt
2022-08-24 16:34:16 +02:00
parent 355be4bc7c
commit bafe1a9d3c
4 changed files with 5 additions and 12 deletions

View File

@@ -559,7 +559,8 @@ impl Module {
/// custom sections. That's why an iterator (rather than one element)
/// is returned.
pub fn custom_sections<'a>(&'a self, name: &'a str) -> impl Iterator<Item = Box<[u8]>> + 'a {
unimplemented!() // TODO: implement on JavaScript
// TODO: implement on JavaScript
unimplemented!()
}
}