Add standard support for Lua 5.5, in particular adding support for table.create (#132) - #133
Merged
Merged
Conversation
alerque
reviewed
Jul 27, 2025
alerque
approved these changes
Aug 1, 2025
Aire-One
pushed a commit
to Aire-One/luacheck
that referenced
this pull request
Mar 18, 2026
…es#133) ...in particular adding support for `table.create`.
ligurio
added a commit
to ligurio/luacheck
that referenced
this pull request
Jul 2, 2026
Follows up the commits eea104d ("fix(Lua 5.5): prevent change on control variable") and 6fc4af9 ("feat: Add standard support for Lua 5.5 (lunarmodules#132) (lunarmodules#133)").
ligurio
pushed a commit
to ligurio/luacheck
that referenced
this pull request
Jul 2, 2026
…es#133) ...in particular adding support for `table.create`.
ligurio
added a commit
to ligurio/luacheck
that referenced
this pull request
Jul 2, 2026
Follows up the commits eea104d ("fix(Lua 5.5): prevent change on control variable") and 6fc4af9 ("feat: Add standard support for Lua 5.5 (lunarmodules#132) (lunarmodules#133)").
ligurio
added a commit
to ligurio/luacheck
that referenced
this pull request
Jul 2, 2026
Follows up the commits eea104d ("fix(Lua 5.5): prevent change on control variable") and 6fc4af9 ("feat: Add standard support for Lua 5.5 (lunarmodules#132) (lunarmodules#133)"). See Lua 5.5-related macros [1]. 1. See related macros: https://github.com/lua/lua/blob/40b76de2d77e66b70a9d4bf989c3f5340919973f/luaconf.h#L344-L357
ligurio
added a commit
to ligurio/luacheck
that referenced
this pull request
Jul 2, 2026
Follows up the commits eea104d ("fix(Lua 5.5): prevent change on control variable") and 6fc4af9 ("feat: Add standard support for Lua 5.5 (lunarmodules#132) (lunarmodules#133)"). See Lua 5.5-related macros [1]. 1. See related macros: https://github.com/lua/lua/blob/40b76de2d77e66b70a9d4bf989c3f5340919973f/luaconf.h#L344-L357
ligurio
pushed a commit
to ligurio/luacheck
that referenced
this pull request
Jul 2, 2026
…es#133) ...in particular adding support for `table.create`.
ligurio
added a commit
to ligurio/luacheck
that referenced
this pull request
Jul 2, 2026
Follows up the commits eea104d ("fix(Lua 5.5): prevent change on control variable") and 6fc4af9 ("feat: Add standard support for Lua 5.5 (lunarmodules#132) (lunarmodules#133)"). See Lua 5.5-related macros [1]. 1. See related macros: https://github.com/lua/lua/blob/40b76de2d77e66b70a9d4bf989c3f5340919973f/luaconf.h#L344-L357
ligurio
added a commit
to ligurio/luacheck
that referenced
this pull request
Jul 3, 2026
Follows up the commits eea104d ("fix(Lua 5.5): prevent change on control variable") and 6fc4af9 ("feat: Add standard support for Lua 5.5 (lunarmodules#132) (lunarmodules#133)"). See Lua 5.5-related macros [1]. 1. See related macros: https://github.com/lua/lua/blob/40b76de2d77e66b70a9d4bf989c3f5340919973f/luaconf.h#L344-L357
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This adds support for table.create, which was the original request in #132.
Unfortunately, this doesn't suffice to actually support Lua 5.5, because we also need to handle the new global keyword. I'll make a separate issue and PR for that.