rust_multistackvm 0.38.0

Stack-based virtual machine on top of rust_multistack crate
Documentation
#[cfg(test)]
mod tests {
    #![allow(unused_imports)]
    use super::*;
    use rust_dynamic::value::Value;
    use rust_multistack::stack::Stack;
    use rust_multistackvm::multistackvm::VM;


    #[test]
    fn test_vm_apply_sub_int_value() {
        let mut vm = VM::new();
        vm.apply(Value::from(1).unwrap()).unwrap();
        vm.apply(Value::from(43).unwrap()).unwrap();
        vm.apply(Value::call("-".to_string(), Vec::new())).unwrap();
        let val = vm.stack.pull().expect("No pull() happens");
        assert_eq!(val.cast_int().unwrap(), 42 as i64);
    }

    #[test]
    fn test_vm_apply_sub_workbech_int_value() {
        let mut vm = VM::new();
        vm.apply(Value::from(43).unwrap()).unwrap();
        vm.apply(Value::call(".".to_string(), Vec::new())).unwrap();
        vm.apply(Value::from(1).unwrap()).unwrap();
        vm.apply(Value::call("-.".to_string(), Vec::new())).unwrap();
        let val = vm.stack.pull_from_workbench().expect("No pull() happens");
        assert_eq!(val.cast_int().unwrap(), 42 as i64);
    }

}