You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some systems that embed Lua and can't use a lot of std functionality just drop the thing entirely and make their own thing. One example is the EdgeTX firmware, where Lua only has access to some of the built in libraries, like table and string, while a lot of other functionality was removed for compatibility reasons, and any needed functionality is redefined as their own API. Oh, and some standard libraries even have their API altered. Again, compatibility reasons.
I think it will be good to add an option to disable those declarations, so that it can be made as a custom type declaration file.
The text was updated successfully, but these errors were encountered:
Some systems that embed Lua and can't use a lot of std functionality just drop the thing entirely and make their own thing. One example is the EdgeTX firmware, where Lua only has access to some of the built in libraries, like
table
andstring
, while a lot of other functionality was removed for compatibility reasons, and any needed functionality is redefined as their own API. Oh, and some standard libraries even have their API altered. Again, compatibility reasons.I think it will be good to add an option to disable those declarations, so that it can be made as a custom type declaration file.
The text was updated successfully, but these errors were encountered: