From b03f58e216b1296b154f3452e9c00799bc660015 Mon Sep 17 00:00:00 2001 From: Christoph Herzog Date: Fri, 16 Dec 2022 00:33:24 +0100 Subject: [PATCH] Remove redundant commented out function Leftover... --- lib/api/src/js/module.rs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lib/api/src/js/module.rs b/lib/api/src/js/module.rs index b02d2bcbfd0..83424f6569f 100644 --- a/lib/api/src/js/module.rs +++ b/lib/api/src/js/module.rs @@ -638,16 +638,6 @@ impl Module { !val.is_undefined() && !val.is_null() } - // /// Get the custom sections of the module given a `name`. - // /// - // /// # Important - // /// - // /// Following the WebAssembly spec, one name can have multiple - // /// 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> + 'a { - // unimplemented!(); - // } /// Get the custom sections of the module given a `name`. /// /// # Important