mirror of
https://github.com/lune-org/lune.git
synced 2025-04-03 18:10:54 +01:00
Remove debug exports (#243)
This commit is contained in:
parent
2a9664a90f
commit
de7029aa19
5 changed files with 26 additions and 24 deletions
|
@ -66,16 +66,3 @@ where
|
||||||
_ => panic!(),
|
_ => panic!(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Allows reading of registry tables for debugging.
|
|
||||||
// This helps keep track of data being gc'd.
|
|
||||||
// However, for security and safety reasons,
|
|
||||||
// this will not be allowed unless debug build.
|
|
||||||
#[cfg(debug_assertions)]
|
|
||||||
pub fn get_table<'lua>(lua: &'lua Lua, regname: &str) -> LuaResult<Option<LuaTable<'lua>>> {
|
|
||||||
match lua.named_registry_value::<LuaValue>(regname)? {
|
|
||||||
LuaValue::Nil => Ok(None),
|
|
||||||
LuaValue::Table(t) => Ok(Some(t)),
|
|
||||||
_ => panic!(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -21,18 +21,12 @@ use crate::{
|
||||||
*/
|
*/
|
||||||
pub fn module(lua: &Lua) -> LuaResult<LuaTable> {
|
pub fn module(lua: &Lua) -> LuaResult<LuaTable> {
|
||||||
let result = TableBuilder::new(lua)?
|
let result = TableBuilder::new(lua)?
|
||||||
.with_values(export_fixed_types(lua)?)?
|
|
||||||
.with_function("nullRef", |lua, ()| create_nullref(lua))?
|
.with_function("nullRef", |lua, ()| create_nullref(lua))?
|
||||||
.with_function("box", |_lua, size: usize| Ok(BoxData::new(size)))?
|
.with_function("box", |_lua, size: usize| Ok(BoxData::new(size)))?
|
||||||
.with_function("open", |_lua, name: String| LibData::new(name))?
|
.with_function("open", |_lua, name: String| LibData::new(name))?
|
||||||
.with_function("isInteger", |_lua, num: LuaValue| Ok(num.is_integer()))?
|
.with_function("isInteger", |_lua, num: LuaValue| Ok(num.is_integer()))?
|
||||||
|
.with_values(export_fixed_types(lua)?)?
|
||||||
.with_value("c", export_c(lua)?)?;
|
.with_value("c", export_c(lua)?)?;
|
||||||
|
|
||||||
#[cfg(debug_assertions)]
|
|
||||||
let result = result.with_function("debugAssociation", |lua, str: String| {
|
|
||||||
println!("WARNING: ffi.debug_associate is GC debug function, which only works for debug build. Do not use this function in production level codes.");
|
|
||||||
ffi::association::get_table(lua, str.as_ref())
|
|
||||||
})?;
|
|
||||||
|
|
||||||
result.build_readonly()
|
result.build_readonly()
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,7 +46,7 @@ impl RunCommand {
|
||||||
// Create a new lune runtime with all globals & run the script
|
// Create a new lune runtime with all globals & run the script
|
||||||
let mut rt = Runtime::new()
|
let mut rt = Runtime::new()
|
||||||
.with_args(self.script_args)
|
.with_args(self.script_args)
|
||||||
.set_unsafe_lib_enabled(self.r#unsafe);
|
.set_unsafe_library_enabled(self.r#unsafe);
|
||||||
|
|
||||||
let result = rt
|
let result = rt
|
||||||
.run(&script_display_name, strip_shebang(script_contents))
|
.run(&script_display_name, strip_shebang(script_contents))
|
||||||
|
|
|
@ -136,7 +136,7 @@ impl Runtime {
|
||||||
Sets arguments to give in `process.args` for Lune scripts.
|
Sets arguments to give in `process.args` for Lune scripts.
|
||||||
*/
|
*/
|
||||||
#[must_use]
|
#[must_use]
|
||||||
pub fn set_unsafe_lib_enabled(self, enabled: bool) -> Self {
|
pub fn set_unsafe_library_enabled(self, enabled: bool) -> Self {
|
||||||
lune_std::set_unsafe_library_enabled(self.inner.lua(), enabled);
|
lune_std::set_unsafe_library_enabled(self.inner.lua(), enabled);
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
|
@ -415,7 +415,7 @@ export type CFnInfo = {
|
||||||
|
|
||||||
Create a callable from reference.
|
Create a callable from reference.
|
||||||
|
|
||||||
@return Struct array type
|
@return A callable
|
||||||
]=]
|
]=]
|
||||||
callable: (self: CFnInfo, functionRef: RefData) -> CallableData,
|
callable: (self: CFnInfo, functionRef: RefData) -> CallableData,
|
||||||
--[=[
|
--[=[
|
||||||
|
@ -425,7 +425,7 @@ export type CFnInfo = {
|
||||||
|
|
||||||
Create a closure from lua function.
|
Create a closure from lua function.
|
||||||
|
|
||||||
@return A closure.
|
@return A closure
|
||||||
]=]
|
]=]
|
||||||
closure: (self: CFnInfo, (ret: RefData, ...RefData) -> ()) -> ClosureData,
|
closure: (self: CFnInfo, (ret: RefData, ...RefData) -> ()) -> ClosureData,
|
||||||
}
|
}
|
||||||
|
@ -467,7 +467,28 @@ export type CStructInfo = {
|
||||||
]=]
|
]=]
|
||||||
ptr: (self: CStructInfo) -> CPtrInfo<CStructInfo>,
|
ptr: (self: CStructInfo) -> CPtrInfo<CStructInfo>,
|
||||||
|
|
||||||
|
--[=[
|
||||||
|
@within CSturctInfo
|
||||||
|
@tag Method
|
||||||
|
@method box
|
||||||
|
|
||||||
|
Create a box with initial value.
|
||||||
|
|
||||||
|
@param table The array of field values
|
||||||
|
@return A box
|
||||||
|
]=]
|
||||||
box: (self: CStructInfo, table: { any }) -> BoxData,
|
box: (self: CStructInfo, table: { any }) -> BoxData,
|
||||||
|
--[=[
|
||||||
|
@within CSturctInfo
|
||||||
|
@tag Method
|
||||||
|
@method readData
|
||||||
|
|
||||||
|
Read a lua table from reference or box.
|
||||||
|
|
||||||
|
@param target Target to read data from
|
||||||
|
@param offset Offset to read data from
|
||||||
|
@return A table
|
||||||
|
]=]
|
||||||
readData: (self: CStructInfo, target: RefData | BoxData, offset: number?) -> { any },
|
readData: (self: CStructInfo, target: RefData | BoxData, offset: number?) -> { any },
|
||||||
writeData: (
|
writeData: (
|
||||||
self: CStructInfo,
|
self: CStructInfo,
|
||||||
|
|
Loading…
Add table
Reference in a new issue