pub struct Compiler { /* private fields */ }
Expand description
Luau compiler
Implementations
sourceimpl Compiler
impl Compiler
sourcepub fn set_optimization_level(self, level: u8) -> Compiler
pub fn set_optimization_level(self, level: u8) -> Compiler
Sets Luau compiler optimization level.
Possible values:
- 0 - no optimization
- 1 - baseline optimization level that doesn’t prevent debuggability (default)
- 2 - includes optimizations that harm debuggability such as inlining
sourcepub fn set_debug_level(self, level: u8) -> Compiler
pub fn set_debug_level(self, level: u8) -> Compiler
Sets Luau compiler debug level.
Possible values:
- 0 - no debugging support
- 1 - line info & function names only; sufficient for backtraces (default)
- 2 - full debug info with local & upvalue names; necessary for debugger
sourcepub fn set_coverage_level(self, level: u8) -> Compiler
pub fn set_coverage_level(self, level: u8) -> Compiler
Sets Luau compiler code coverage level.
Possible values:
- 0 - no code coverage support (default)
- 1 - statement coverage
- 2 - statement and expression coverage (verbose)
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Compiler
impl Send for Compiler
impl Sync for Compiler
impl Unpin for Compiler
impl UnwindSafe for Compiler
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more