Skip to main content

IFunctionCallStatementMethods

Trait IFunctionCallStatementMethods 

Source
pub trait IFunctionCallStatementMethods: IFunctionCallStatement {
    // Provided methods
    fn ctor(
        self,
        lcontext: impl Into<ScriptLoadingContext>,
        function_call_expression: impl Into<FunctionCallExpression>,
    ) { ... }
    fn compile(self, bc: impl Into<ByteCode>) { ... }
    fn remove_breakpoint_stop(self, instruction: impl Into<Instruction>) { ... }
}

Provided Methods§

Source

fn ctor( self, lcontext: impl Into<ScriptLoadingContext>, function_call_expression: impl Into<FunctionCallExpression>, )

.ctor(crate::moon_sharp::interpreter::execution::scriptloadingcontext::ScriptLoadingContext, crate::moon_sharp::interpreter::tree::expressions::functioncallexpression::FunctionCallExpression) overload

Source

fn compile(self, bc: impl Into<ByteCode>)

Compile(crate::moon_sharp::interpreter::execution::vm::bytecode::ByteCode) overload

Source

fn remove_breakpoint_stop(self, instruction: impl Into<Instruction>)

RemoveBreakpointStop(crate::moon_sharp::interpreter::execution::vm::instruction::Instruction) 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: IFunctionCallStatement> IFunctionCallStatementMethods for __T

Available on crate feature moon_sharp-interpreter-tree-statements-functioncallstatement only.