| 1 | use crate::interpreter::stack::{CallFrame, ValueStack}; |
| 2 | use crate::reference::StoreItem; |
| 3 | use crate::{Error, FunctionInstance, InterpreterRuntime, Result, Store, unlikely}; |
| 4 | use alloc::{boxed::Box, format, rc::Rc, sync::Arc, vec, vec::Vec}; |
nothing calls this directly
no outgoing calls
no test coverage detected