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§
Sourcefn ctor(
self,
lcontext: impl Into<ScriptLoadingContext>,
function_call_expression: impl Into<FunctionCallExpression>,
)
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
Sourcefn compile(self, bc: impl Into<ByteCode>)
fn compile(self, bc: impl Into<ByteCode>)
Compile(crate::moon_sharp::interpreter::execution::vm::bytecode::ByteCode) overload
Sourcefn remove_breakpoint_stop(self, instruction: impl Into<Instruction>)
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§
impl<__T: IFunctionCallStatement> IFunctionCallStatementMethods for __T
Available on crate feature
moon_sharp-interpreter-tree-statements-functioncallstatement only.