Skip to main content

runmat_vm/interpreter/
api.rs

1pub use crate::interpreter::state::{InterpreterOutcome, InterpreterState};
2pub use crate::runtime::call_stack::{
3    set_call_stack_limit, set_error_namespace, DEFAULT_CALLSTACK_LIMIT, DEFAULT_ERROR_NAMESPACE,
4};
5pub use crate::runtime::workspace::{
6    push_pending_workspace, take_updated_workspace_state, PendingWorkspaceGuard,
7};