diff --git a/lib/runtime/src/module.rs b/lib/runtime/src/module.rs index e705910279..cc0d4fc62d 100644 --- a/lib/runtime/src/module.rs +++ b/lib/runtime/src/module.rs @@ -7,15 +7,6 @@ use cranelift_wasm::{ }; use std::collections::HashMap; -/// Possible values for a WebAssembly table element. -#[derive(Clone, Debug)] -pub enum TableElement { - /// A element that, if called, produces a trap. - Trap(), - /// A function. - Function(FunctionIndex), -} - /// A WebAssembly table initializer. #[derive(Clone, Debug)] pub struct TableElements {