Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove non-existent builtins and keywords #1

Merged
merged 4 commits into from
Nov 12, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Remove _ENV
  • Loading branch information
Someon1e committed Jun 9, 2024
commit c49f049d351d30dd33fd648f559701778893d1cf
2 changes: 1 addition & 1 deletion src/languages/luau.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default function (hljs) {

const BUILT_IN =
// Lua metatags and globals:
'_G _ENV _VERSION __index __newindex __mode __call __metatable __tostring __len ' +
'_G _VERSION __index __newindex __mode __call __metatable __tostring __len ' +
'__gc __add __sub __mul __div __mod __pow __concat __unm __eq __lt __le assert ' +
// New in Luau (metatags -> globals)
'__idiv __iter newproxy rawlen ' +
Expand Down