boa_engine 0.21.1

Boa is a Javascript lexer, parser and compiler written in Rust. Currently, it has support for some of the language.
Documentation
use crate::{
    Context,
    vm::{
        code_block::create_function_object_fast,
        opcode::{Operation, VaryingOperand},
    },
};

/// `GetFunction` implements the Opcode Operation for `Opcode::GetFunction`
///
/// Operation:
///  - Get function from the pre-compiled inner functions.
#[derive(Debug, Clone, Copy)]
pub(crate) struct GetFunction;

impl GetFunction {
    #[inline(always)]
    pub(crate) fn operation((dst, index): (VaryingOperand, VaryingOperand), context: &mut Context) {
        let code = context
            .vm
            .frame()
            .code_block()
            .constant_function(index.into());
        let function = create_function_object_fast(code, context);
        context.vm.set_register(dst.into(), function.into());
    }
}

impl Operation for GetFunction {
    const NAME: &'static str = "GetFunction";
    const INSTRUCTION: &'static str = "INST - GetFunction";
    const COST: u8 = 3;
}