harn-vm 0.7.60

Async bytecode virtual machine for the Harn programming language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::value::{VmError, VmValue};

impl crate::vm::Vm {
    pub(super) fn call_number_method(
        &mut self,
        _obj: &VmValue,
        _method: &str,
        _args: &[VmValue],
    ) -> Result<VmValue, VmError> {
        Ok(VmValue::Nil)
    }
}