Skip to main content

luaur_compiler/methods/
compiler_compile_expr_temp.rs

1use crate::records::compiler::Compiler;
2use luaur_ast::records::ast_expr::AstExpr;
3
4impl Compiler {
5    pub fn compile_expr_temp(&mut self, node: *mut AstExpr, target: u8) {
6        self.compile_expr(node, target, true);
7    }
8}