feat(vm): Process/ make fields public

This commit is contained in:
Alain Zscheile 2022-09-26 05:09:14 +02:00
parent db88aa1f3f
commit 9af713411b

View file

@ -63,9 +63,9 @@ pub enum StackEntValue {
}
pub struct Process {
stack: Vec<StackEntValue>,
callstack: Vec<InstrPtr>,
instrp: InstrPtr,
pub stack: Vec<StackEntValue>,
pub callstack: Vec<InstrPtr>,
pub instrp: InstrPtr,
}
impl Process {