mirror of
https://github.com/lune-org/lune.git
synced 2025-04-03 01:50:55 +01:00
change RuntimeInner.create() to set a default compiler with O2
This commit is contained in:
parent
c935149c1e
commit
c406f0a263
1 changed files with 8 additions and 1 deletions
|
@ -8,7 +8,10 @@ use std::{
|
|||
},
|
||||
};
|
||||
|
||||
use mlua::prelude::*;
|
||||
use mlua::{
|
||||
prelude::*,
|
||||
Compiler,
|
||||
};
|
||||
use mlua_luau_scheduler::{Functions, Scheduler};
|
||||
use self_cell::self_cell;
|
||||
|
||||
|
@ -30,6 +33,10 @@ impl RuntimeInner {
|
|||
fn create() -> LuaResult<Self> {
|
||||
let lua = Rc::new(Lua::new());
|
||||
|
||||
let compiler = Compiler::new()
|
||||
.set_optimization_level(2);
|
||||
|
||||
lua.set_compiler(compiler);
|
||||
lua.set_app_data(Rc::downgrade(&lua));
|
||||
lua.set_app_data(Vec::<String>::new());
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue