scoder

Results 650 comments of scoder

There is a reproducing script in https://gist.github.com/mickeprag/75a0fbf04cfd06c3fe48b759da22f5ef It's probably still not minimal and requires more investigation to find the point where things go wrong in the code. Help with that...

> Is there a way to do this at all right now? You can probably set up a metatable from Lua-side, so yes, it can be done, I think. Would...

Good question. I remember thinking about merging the two at some point, but given how critical the performance is here, ended up optimising them separately. I even recall making them...

Want to give it a try?

Sounds like a great idea. We could probably avoid initialisation time crashes by disabling the limitation until the Lua runtime is initialised. I think that's a fair thing to do:...

If this can be done (mostly) via C macros, and doesn't add too much to the maintenance burden, and assuming that luau is not just someone's hobby language but something...

At least, it doesn't crash. These things used to. :) Note that the `pcall(lua_func)` essentially just unpacks both Lua functions and calls one with the other as argument inside of...

Yeah, the intention is to block access to anything risky in Python. Preventing access to anything risky provided by Lua is probably best done in Lua.

Could you be more specific about what you are asking?

Don't the decorators work for you?