lenscas
lenscas
I think I can reproduce the same bug by opening the dev tools. In my case they are at the bottom of firefox and if I drag it up the...
> I feel like the page is getting slower and slower with more steps. Memory leak? There is indeed a memory leak inside the browser build. I submitted a pull...
> I have seen that the [tealr](https://github.com/lenscas/tealr) crate has something like this for Teal, so there is some prior art from @lenscas. tealr is basically just a wrapper around mlua....
For what its worth, I made a macro to implement ToLua and FromLua some time ago (it also does some other stuff related to my own crate but that should...
Actually, I totally forgot I also have https://github.com/lenscas/tealr/blob/master/src/mlu/picker_macro.rs#L38 Which is a `macro_rules!` macro that allows you to easily create a type that is an enum in Rust and exposed as...
> fn insert_variables_into_env(&self, variable_name: String, &mut LuaTable) -> Result; What if the 2 chunks capture variables with the same name but with different values(or even types?). Might want to think...
YES! PLEASE! Even just the ability to add custom context to errors would already be a huge help.
anyhow allows you to add more context to an error as you let the the error bubble up. If it would be possible to take this and similar contexts and...
Lua does have api's for this however sandboxing is, as always hard to get right. You can probably use https://github.com/kikito/lua-sandbox as a starting point if nothing else. It is a...
People do want to change it but fear of it becoming too much of a burden without syntax to make nill checks easier. I personally rather see the split happen...