aboutsummaryrefslogtreecommitdiff
path: root/bootstrap.lua
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2019-01-25 15:49:29 -0800
committerBruce Hill <bruce@bruce-hill.com>2019-01-25 15:50:51 -0800
commita1b559a3a269bbee1ae9a33061b08a868ea52f5c (patch)
tree51f2368c6542efe47dd2a4007ba92e22650236b9 /bootstrap.lua
parent1713a0e38f12f8ed167575ac5a84a0eb8dd59a44 (diff)
Added metatables for bool, number, function, coroutine. Added
run-time check to make sure precompiled code used the same version of Lua. Methods can now be used in (* compiles to *), etc.
Diffstat (limited to 'bootstrap.lua')
-rw-r--r--bootstrap.lua3
1 files changed, 0 insertions, 3 deletions
diff --git a/bootstrap.lua b/bootstrap.lua
index 97a565d..31b03fc 100644
--- a/bootstrap.lua
+++ b/bootstrap.lua
@@ -124,9 +124,6 @@ local compile_actions = {
["is jit"] = function(self, _t, code)
return LuaCode("jit")
end,
- ["Lua version"] = function(self, _t, code)
- return LuaCode("_VERSION")
- end,
["nomsu environment"] = function(self, _t)
return LuaCode("_ENV")
end,