Skip to main content

IIVariableMethods

Trait IIVariableMethods 

Source
pub trait IIVariableMethods: IIVariable {
    // Provided method
    fn compile_assignment(
        self,
        bc: impl Into<ByteCode>,
        stackofs: impl Into<i32>,
        tupleidx: impl Into<i32>,
    ) { ... }
}

Provided Methods§

Source

fn compile_assignment( self, bc: impl Into<ByteCode>, stackofs: impl Into<i32>, tupleidx: impl Into<i32>, )

CompileAssignment(crate::moon_sharp::interpreter::execution::vm::bytecode::ByteCode, i32, i32) overload

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<__T: IIVariable> IIVariableMethods for __T

Available on crate feature moon_sharp-interpreter-tree-ivariable only.