use crateInstructionPtr;
use SmallVec;
/// A lightweight call stack used by the interpreter to track return addresses.
/// It stores instruction pointers for active calls and allows fast push/pop without heap churn.
/// The capacity grows on demand but is typically small due to Wasm's structured control flow.