1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::traphandlers::CallThreadState;
use crate::VMRuntimeLimits;

/// A WebAssembly Coredump
#[derive(Debug)]
pub enum CoreDumpStack {}

impl CallThreadState {
    pub(super) fn capture_coredump(
        &self,
        _limits: *const VMRuntimeLimits,
        _trap_pc_and_fp: Option<(usize, usize)>,
    ) -> Option<CoreDumpStack> {
        None
    }
}