Always return true for is_from_store

This commit is contained in:
Felix Schütt
2022-08-24 11:25:22 +02:00
parent 4540e3ba8f
commit 4966ec45ba
3 changed files with 5 additions and 5 deletions

View File

@@ -559,7 +559,7 @@ 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!()
unimplemented!() // TODO: implement on JavaScript
}
}