mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 18:40:58 +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 mlua_luau_scheduler::{Functions, Scheduler};
|
||||||
use self_cell::self_cell;
|
use self_cell::self_cell;
|
||||||
|
|
||||||
|
@ -30,6 +33,10 @@ impl RuntimeInner {
|
||||||
fn create() -> LuaResult<Self> {
|
fn create() -> LuaResult<Self> {
|
||||||
let lua = Rc::new(Lua::new());
|
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(Rc::downgrade(&lua));
|
||||||
lua.set_app_data(Vec::<String>::new());
|
lua.set_app_data(Vec::<String>::new());
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue