mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-14 09:21:20 +00:00
Inline breakpoint support in core.
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
use std::collections::BTreeMap;
|
||||
use std::ops::Bound::{Included, Unbounded};
|
||||
use crate::backend::Backend;
|
||||
|
||||
#[derive(Copy, Clone, Debug, Eq, PartialEq, Hash)]
|
||||
pub struct RegisterIndex(pub usize);
|
||||
@ -111,6 +112,7 @@ pub struct CodeVersion {
|
||||
pub baseline: bool,
|
||||
pub msm: ModuleStateMap,
|
||||
pub base: usize,
|
||||
pub backend: Backend,
|
||||
}
|
||||
|
||||
impl ModuleStateMap {
|
||||
|
Reference in New Issue
Block a user